using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 规则类型-数据库操作接口 /// public interface IIntegrity_CreditLevelRuleDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 单个查询 /// /// 编号 /// Integrity_CreditLevelRule SelectModelByRuleId(int? RuleId); /// /// 根据类型获取列表 /// /// 类型 /// IEnumerable SelectListByType(bool RuleType); /// /// 单个查询获取上一级 /// /// 编号 /// Model.Integrity_CreditLevelRule SelectModelByUpId(int? RuleId); } }