27 lines
719 B
C#
27 lines
719 B
C#
namespace CRM.Core.DTO.Res
|
||
{
|
||
public class ResetMobileDto
|
||
{
|
||
/// <summary>
|
||
/// 用户名
|
||
/// </summary>
|
||
public string username { get; set; }
|
||
/// <summary>
|
||
/// 类型,0:绑定,1:解绑,2:修改
|
||
/// 0:绑定时需要新手机号
|
||
/// 1:解绑时需要旧手机号
|
||
/// 2:修改时需要新旧手机号
|
||
/// </summary>
|
||
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; }
|
||
}
|
||
}
|