14 lines
389 B
C#
14 lines
389 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_UNITECUSTOMERAPPLY_Q
|
|
{
|
|
CSVR_UNITECUSTOMERAPPLY GetModel_UniteCustomerApply(decimal id);
|
|
List<CSVR_UNITECUSTOMERAPPLY> GetList_UniteCustomerApply(ref Pager pg, string resid, decimal status, string stime, string etime);
|
|
|
|
}
|
|
}
|