Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/UsAppAuth/UsAppBoundLocationDto.cs 719 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
  namespace FoodLabeling.Application.Contracts.Dtos.UsAppAuth;
  
  /// <summary>
  /// App 端展示的绑定门店信息
  /// </summary>
  public class UsAppBoundLocationDto
  {
      /// <summary>门店主键 IdGuid 字符串)</summary>
      public string Id { get; set; } = string.Empty;
  
      /// <summary>业务编码,如 LOC-1</summary>
      public string LocationCode { get; set; } = string.Empty;
  
      /// <summary>门店名称</summary>
      public string LocationName { get; set; } = string.Empty;
  
      /// <summary>拼接后的完整地址,便于移动端展示</summary>
      public string FullAddress { get; set; } = string.Empty;
  
      /// <summary>门店是否启用</summary>
      public bool State { get; set; }
  }