ComplianceServer/oldcode/IBLL/Base/IBAS_PARAMETER_Q.cs

15 lines
513 B
C#

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<BAS_PARAMETER_Extend> GetList_Patameter(ref Pager pager, string paraKey, string paraName, string paraValue, string paraType, string groupId, string stime, string etime);
List<BAS_PARAMETER> GetList(ref Pager page);
}
}