14 lines
402 B
C#
14 lines
402 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_PARAMETERGROUP_Q
|
|
{
|
|
BAS_PARAMETERGROUP GetModel_ParameterGroup(string id);
|
|
List<BAS_PARAMETERGROUP> GetList();
|
|
List<BAS_PARAMETERGROUP> GetList_ParameterGroup(ref Pager pg, string id, string name, string stime, string etime);
|
|
}
|
|
}
|