using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; namespace CY.IDAL { /// /// 规则类型-数据库操作接口 /// public interface IPay_CreditLineLevelRuleDAL : ICommonDAL, IPaging, IGetAllModel { /// /// 单个查询 /// /// 编号 /// Pay_CreditLineLevelRule SelectModelByKeyid(int? Keyid); } }