Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/TeamMember/TeamMemberGetOutputDto.cs 950 Bytes
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
  namespace FoodLabeling.Application.Contracts.Dtos.TeamMember;
  
  public class TeamMemberGetOutputDto
  {
      public Guid Id { get; set; }
  
      public string FullName { get; set; } = string.Empty;
  
      public string UserName { get; set; } = string.Empty;
  
      public string? Email { get; set; }
  
      public long? Phone { get; set; }
  
      public bool State { get; set; }
  
      public Guid? RoleId { get; set; }
  
      /// <summary>适用 Company Id(多选,由绑定门店反推)</summary>
      public List<string> PartnerIds { get; set; } = new();
  
      /// <summary>适用 Region Id(多选,<c>fl_group.Id</c></summary>
      public List<string> RegionIds { get; set; } = new();
  
      /// <summary> <see cref="RegionIds"/> 相同</summary>
      public List<string> GroupIds { get; set; } = new();
  
      public List<string> LocationIds { get; set; } = new();
  
      public List<TeamMemberAssignedLocationDto> AssignedLocations { get; set; } = new();
  }