Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/TeamMember/TeamMemberCreateInputVo.cs 1.36 KB
59e51671   “wangming”   1
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
40
41
42
43
44
45
46
  namespace FoodLabeling.Application.Contracts.Dtos.TeamMember;
  
  public class TeamMemberCreateInputVo
  {
      public string FullName { get; set; } = string.Empty;
  
      /// <summary>
      /// 登录账号(建议用邮箱或自定义用户名)
      /// </summary>
      public string UserName { get; set; } = string.Empty;
  
      public string Password { get; set; } = string.Empty;
  
      public string? Email { get; set; }
  
      public long? Phone { get; set; }
  
      public Guid? RoleId { get; set; }
  
      /// <summary>
      /// 适用 Company<c>fl_partner.Id</c>UI  Company);与 <see cref="PartnerIds"/> 合并
      /// </summary>
      public string? PartnerId { get; set; }
  
      /// <summary>
      /// 适用 Company 多选(<c>fl_partner.Id</c>
      /// </summary>
      public List<string>? PartnerIds { get; set; }
  
      /// <summary>
      /// 适用 Region 多选(<c>fl_group.Id</c>);与 <see cref="GroupIds"/> 合并
      /// </summary>
      public List<string>? RegionIds { get; set; }
  
      /// <summary>
      /// 适用 Region 多选(与 <see cref="RegionIds"/> 相同)
      /// </summary>
      public List<string>? GroupIds { get; set; }
  
      /// <summary>
      /// 适用门店多选(<c>location.Id</c>);与 Company/Region 合并后写入 <c>userlocation</c>
      /// </summary>
      public List<string>? LocationIds { get; set; }
  
      public bool State { get; set; } = true;
  }