using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL.Inquiry { /// /// 数码快印纸张信息 /// public interface ISysInquiry_DigitalPrintPaperInfoDAL : ICommonDAL { /// /// 分页返回数码快印纸张列表 /// /// 名称 /// 分页参数 /// IEnumerable SelectModelPage(string paperName, string status, Infrastructure.Query.Pagination pagination); /// /// 根据主键返回数码快印纸张实体 /// /// 主键ID /// LDE材质 Model.SysInquiry_DigitalPrintPaperInfo SelectModelByKey(int keyid); /// /// 获取最新排序顺序 /// /// int GetOrderNumByMax(); /// /// 获取有效的数码快印纸张列表 /// /// IList GetModelList(); /// /// 是否已经存在纸张 /// /// /// bool IsExistPaperName(string paperName); } }