软测单独项目
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.
 
 
 
 
 
 

40 lines
1.1 KiB

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