2023-04-13 21:12:06 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2023-04-15 17:33:42 +08:00
|
|
|
|
namespace Yi.Furion.Application.Rbac.Dtos.Account
|
2023-04-13 21:12:06 +08:00
|
|
|
|
{
|
|
|
|
|
|
public class RegisterDto
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
//电话号码,根据code的表示来获取
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 账号
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string UserName { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 密码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 唯一标识码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Uuid { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 电话
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public long Phone { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 验证码
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Code { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|