using System; using System.Collections.Generic; using System.Linq; using System.Text; using CY.IBaseDAL; using CY.Model; using CY.Infrastructure.Query; namespace CY.IDAL { /// /// 推广系统推广收益规则-数据库操作接口 /// public interface IPromotion_IncomeRuleDAL : ICommonDAL { /// /// 获取所有收益规则 /// /// IEnumerable SelectAllIncomeRule(Pagination pa); Promotion_IncomeRule GetSingleModel(string Keyid); } }