Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/AuthScope/AuthScopeRegionOptionDto.cs 590 Bytes
49755ef0   李曜臣   6-12代码优化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  namespace FoodLabeling.Application.Contracts.Dtos.AuthScope;
  
  /// <summary>
  /// 选定 Company 后的 Region<c>fl_group</c>)下拉项。
  /// </summary>
  public class AuthScopeRegionOptionDto
  {
      /// <summary>Region Id<c>fl_group.Id</c></summary>
      public string Id { get; set; } = string.Empty;
  
      /// <summary>Region 名称</summary>
      public string GroupName { get; set; } = string.Empty;
  
      /// <summary>所属公司 Id</summary>
      public string PartnerId { get; set; } = string.Empty;
  
      /// <summary>是否启用</summary>
      public bool State { get; set; }
  }