namespace CRM.Core.DTO
{
public class SyncRegUserDto
{
public string username { get; set; }
public string password { get; set; }
public string mobile { get; set; }
///
/// email
///
public string em { get; set; }
///
/// 渠道号
///
public string ch { get; set; }
///
/// 平台
///
public string plat { get; set; }
///
/// 前端客户端IP
///
public string ip { get; set; }
///
/// clientip
///
public string clientip { get; set; }
///
/// 注册时间
///
public long? regDate { get; set; }
public string eid { get; set; }
public string openid { get; set; }
public string openplat { get; set; }
public string unionId { get; set; }
public string liveCode { get; set; }
public string regSource { get; set; }
public string refeid { get; set; }
public int channel { get; set; }
public int? curChannel { get; set; }
public int? groupid { get; set; }
}
public class BindRegUserDto
{
public string username { get; set; }
public string unionId { get; set; }
public int ch { get; set; }
public int eid { get; set; }
public int? groupid { get; set; }
}
}