using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace FangYar.IDAL.TBL { public interface SysDicdetailIDAL { /// /// 根据ID获取model /// FangYar.Model.TBL.TBL_SYS_DICDETAIL_Model GetModelByID(string ID); /// /// 添加 /// bool Add(FangYar.Model.TBL.TBL_SYS_DICDETAIL_Model model); /// /// 删除 /// bool Delete(string IDList); /// /// 编辑 /// bool Edit(FangYar.Model.TBL.TBL_SYS_DICDETAIL_Model model); /// /// 获取记录数 /// /// /// int Count(string strwhere); /// /// 分页 /// /// /// /// /// void QueryProc(int PageIndex, int PageSize, string strwhere, string order); List QueryList(int PageIndex, int PageSize, string strwhere, string order); /// /// 获取数据 /// /// /// DataSet GetList(string strwhere); } }