Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/AuthScope/AuthScopeSelectLocationInputVo.cs 602 Bytes
49755ef0   李曜臣   6-12代码优化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  namespace FoodLabeling.Application.Contracts.Dtos.AuthScope;
  
  /// <summary>
  /// 确认当前工作门店(选完 Company  Region  Location 后提交)。
  /// </summary>
  public class AuthScopeSelectLocationInputVo
  {
      /// <summary>公司 Id<c>fl_partner.Id</c></summary>
      public string PartnerId { get; set; } = string.Empty;
  
      /// <summary>Region Id<c>fl_group.Id</c></summary>
      public string GroupId { get; set; } = string.Empty;
  
      /// <summary>门店 Id<c>location.Id</c>Guid 字符串)</summary>
      public string LocationId { get; set; } = string.Empty;
  }