24 lines
698 B
C#
24 lines
698 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_APPLYVIP_Q : IRepository<CSVR_APPLYVIP>
|
|
{
|
|
/// <summary>
|
|
/// 获取实体
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
WX.CRM.Model.Entity.CSVR_APPLYVIP GetModel(decimal id);
|
|
/// <summary>
|
|
/// 是否已经申请
|
|
/// </summary>
|
|
/// <param name="resId"></param>
|
|
/// <returns></returns>
|
|
bool IsExistApplyNumber(string resId);
|
|
List<WX.CRM.Model.Entity.CSVR_APPLYVIP> GetList(ref Pager pager, string resid, bool isCheck);
|
|
}
|
|
}
|