using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Csvr { public interface ICSVR_APPLYVIP_Q : IRepository { /// /// 获取实体 /// /// /// WX.CRM.Model.Entity.CSVR_APPLYVIP GetModel(decimal id); /// /// 是否已经申请 /// /// /// bool IsExistApplyNumber(string resId); List GetList(ref Pager pager, string resid, bool isCheck); } }