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; } } /// /// 客户合并 /// 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 mergeappuserlist { get; set; } public string resid { get; set; } public string newcustomerid { get; set; } } }