|
using System.Collections.Generic;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IRES_VIPCUSTOMER : IRepository<RES_VIPCUSTOMER>
|
|
{
|
|
IList<RES_VIPCUSTOMER> GetByResIds(string[] trueResIds);
|
|
bool AddMobileToMySql(List<string> mobilelist);
|
|
}
|
|
}
|