Blame view

Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/Dtos/Account/RegisterDto.cs 841 Bytes
515fceeb   “wangming”   框架初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Account
  {
      public class RegisterDto
      {
  
          //电话号码,根据code的表示来获取
  
          /// <summary>
          /// 账号
          /// </summary>
          public string UserName { get; set; }
  
          /// <summary>
          /// 密码
          /// </summary>
          public string Password { get; set; }
  
          /// <summary>
          /// 唯一标识码
          /// </summary>
          public string? Uuid { get; set; }
  
          /// <summary>
          /// 电话
          /// </summary>
          public long? Phone { get; set; }
  
          /// <summary>
          /// 验证码
          /// </summary>
          public string? Code { get; set; }
          
          /// <summary>
          /// 昵称
          /// </summary>
          public string? Nick{ get; set; }
          
      }
  }