Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/AuthScope/AuthScopeSelectLocationOutputDto.cs 689 Bytes
49755ef0   李曜臣   6-12代码优化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  using FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
  
  namespace FoodLabeling.Application.Contracts.Dtos.AuthScope;
  
  /// <summary>
  /// 选店确认结果:与 App 绑定门店结构一致,并带回 Company/Region 上下文。
  /// </summary>
  public class AuthScopeSelectLocationOutputDto
  {
      public string PartnerId { get; set; } = string.Empty;
  
      public string PartnerName { get; set; } = string.Empty;
  
      public string GroupId { get; set; } = string.Empty;
  
      public string GroupName { get; set; } = string.Empty;
  
      /// <summary>当前工作门店(与 <c>UsAppBoundLocationDto</c> 一致)</summary>
      public UsAppBoundLocationDto Location { get; set; } = new();
  }