using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace FangYar.IDAL.TBL { public interface SysDicmodIDAL { /// /// 根据ID获取model /// FangYar.Model.TBL.TBL_SYS_DICMOD_Model GetModelByID(string ID); /// /// 添加 /// bool Add(FangYar.Model.TBL.TBL_SYS_DICMOD_Model model); /// /// 删除 /// bool Delete(string IDList); /// /// 编辑 /// bool Edit(FangYar.Model.TBL.TBL_SYS_DICMOD_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); } }