40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
using Newtonsoft.Json;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CRM.Core.DTO.Res
|
|
{
|
|
public class MergeCustomerDto
|
|
{
|
|
public string oldresid { get; set; }
|
|
public string newresid { get; set; }
|
|
public string deptcode { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 客户合并
|
|
/// </summary>
|
|
public class MergeAppUserId
|
|
{
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string appid { get; set; }
|
|
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string appuserid { get; set; }
|
|
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string mobile { get; set; }
|
|
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string unionid { get; set; }
|
|
|
|
}
|
|
public class MergeOrUnBind
|
|
{
|
|
public string type { get; set; }
|
|
public List<MergeAppUserId> mergeappuserlist { get; set; }
|
|
public string resid { get; set; }
|
|
public string newcustomerid { get; set; }
|
|
}
|
|
} |