TG.WXCRM.V4/IBLL/Csvr/ICSVR_VIPNUMBER_Q.cs

19 lines
611 B
C#

using System.Collections.Generic;
using WX.CRM.Common;
namespace WX.CRM.IBLL.Csvr
{
public interface ICSVR_VIPNUMBER_Q
{
List<WX.CRM.Model.Entity.CSVR_VIPNUMBER> GetPagingData(ref Pager pager, string resId, string type);
bool IsVipNumber(ref ValidationErrors errors, string resid, string line);
/// <summary>
/// 是否存在
/// </summary>
/// <param name="resId"></param>
/// <param name="viptype"></param>
/// <returns></returns>
List<WX.CRM.Model.Entity.CSVR_VIPNUMBER> GetByResIds(string[] resId, string viptype);
}
}