ComplianceServer/oldcode/IBLL/Csvr/ICSVR_IDMAP_Q.cs

31 lines
967 B
C#

using System.Collections.Generic;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Csvr
{
public interface ICSVR_IDMAP_Q
{
/// <summary>
/// 根据旧的customerID
/// </summary>
/// <param name="OldCustoemrId"></param>
/// <returns></returns>
List<string> GetResId(string OldCustoemrId);
/// <summary>
/// 根据旧的customerid批量转Resid
/// </summary>
/// <param name="oldCustomerId"></param>
/// <returns></returns>
List<CSVR_IDMAP> GetResIdList(System.Data.DataTable dt, string selecttype);
/// <summary>
/// 根据新旧客户ID查找映射关系是否已经存在
/// </summary>
/// <param name="oldcustomerid">旧客户ID</param>
/// <param name="newresid">新客户ID</param>
/// <returns></returns>
CSVR_IDMAP GetModelByResIdAndCustomerId(string oldcustomerid, string newresid);
}
}