using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FangYar.IDAL.TBL { /// /// 操作日志数据记录 /// public interface SysOperationLogIDAL { /// /// 根据ID获取model /// FangYar.Model.TBL.Tbl_Sys_Operation_Log_Model GetModelByID(string ID); /// /// 添加 /// bool Add(FangYar.Model.TBL.Tbl_Sys_Operation_Log_Model model,string conStr); /// /// 删除 /// bool Delete(string IDList); /// /// 编辑 /// bool Edit(FangYar.Model.TBL.Tbl_Sys_Operation_Log_Model model); /// /// 获取记录数 /// /// /// int Count(string strwhere); List QueryList(int PageIndex, int PageSize, string strwhere); } }