using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; using CY.Infrastructure.Query; using System.Data; namespace CY.IDAL { public interface ISys_FirmStencilDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 根据编号获得信息 /// /// 编号 /// Sys_FirmStencil GetModelByKeyid(int? Keyid); /// /// 获取模板信息列表 /// /// /// IEnumerable SelectModelList(Infrastructure.Query.Pagination pa); /// /// 获取列表 /// /// DataTable SelectModelList(); /// /// 返回列表 /// /// IEnumerable SelectAllModelList(); /// /// 设置默认模板 /// /// /// bool setDefalt(int? Keyid); } }