using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.Model; using CY.IBaseDAL; namespace CY.IDAL.Inquiry { /// ///招牌字信息接口 /// public interface ISysInquiry_SignboardInfoDAL:ICommonDAL { /// /// 分页返回招牌字信息列表 /// /// 字名称 /// 分页参数 /// IEnumerable SelectModelPage(string characterName, string thickness, string status, Infrastructure.Query.Pagination pagination); /// /// 根据主键返回招牌字信息 /// /// 主键ID /// 招牌字信息 Model.SysInquiry_SignboardInfo SelectModelByKey(int keyid); /// /// 获取最新排序顺序 /// /// int GetOrderNumByMax(); /// /// 获取有效的招牌字信息列表 /// /// IList GetModelList(); /// /// 获取有效的所有招牌字 /// /// IList GetCharacterNameList(); /// /// 判断是否有重复的 /// /// /// /// bool IsExist(string characterName, string thickness); } }