using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Base { public interface IBAS_PARAMETER_Q { BAS_PARAMETER GetModel_Patameter(string paraKey); BAS_PARAMETER GetModelByPkid(decimal pkid); List GetList_Patameter(ref Pager pager, string paraKey, string paraName, string paraValue, string paraType, string groupId, string stime, string etime); List GetList(ref Pager page); } }