namespace CRM.Core.DTO.Res
{
public class ResetMobileDto
{
///
/// 用户名
///
public string username { get; set; }
///
/// 类型,0:绑定,1:解绑,2:修改
/// 0:绑定时需要新手机号
/// 1:解绑时需要旧手机号
/// 2:修改时需要新旧手机号
///
public int type { get; set; }
public string oldmobile { get; set; }
public string newmobile { get; set; }
public string ip { get; set; }
}
public class ResetMobileRet
{
public int ret { get; set; }
public string msg { get; set; }
}
}