You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
564 B
23 lines
564 B
using FangYar.Model.TBL;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FangYar.BLL.TBL
|
|
{
|
|
public class SysOperationLogBLL
|
|
{
|
|
private static readonly FangYar.IDAL.TBL.SysOperationLogIDAL dal = FangYar.DALFactory.Factory.GetSysOperationLogDAL();
|
|
|
|
|
|
/// <summary>
|
|
/// 添加一条记录
|
|
/// </summary>
|
|
public bool Add(Tbl_Sys_Operation_Log_Model model,string conStr)
|
|
{
|
|
return dal.Add(model, conStr);
|
|
}
|
|
}
|
|
}
|
|
|