|
namespace LearningOfficer.OA.Common.Dtos.LoginMobile
|
|
{
|
|
/// <summary>
|
|
/// 登录手机Dto
|
|
/// </summary>
|
|
public class LoginMobileDto
|
|
{
|
|
/// <summary>
|
|
/// 手机号
|
|
/// </summary>
|
|
public string Phone { get; set; }
|
|
/// <summary>
|
|
/// 验证码
|
|
/// </summary>
|
|
public string Code { get; set; }
|
|
}
|
|
}
|