Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Location/LocationCreateInputVo.cs 984 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
32
33
34
35
36
37
38
39
40
41
42
43
  namespace FoodLabeling.Application.Contracts.Dtos.Location;
  
  /// <summary>
  /// 新增门店入参
  /// </summary>
  public class LocationCreateInputVo
  {
      public string? Partner { get; set; }
  
      public string? GroupName { get; set; }
  
      /// <summary>
      /// Location ID(业务编码)
      /// </summary>
      public string LocationCode { get; set; } = string.Empty;
  
      public string LocationName { get; set; } = string.Empty;
  
      public string? Street { get; set; }
  
      public string? City { get; set; }
  
      public string? StateCode { get; set; }
  
      public string? Country { get; set; }
  
      public string? ZipCode { get; set; }
  
      public string? Phone { get; set; }
  
      public string? Email { get; set; }
  
      public decimal? Latitude { get; set; }
  
      public decimal? Longitude { get; set; }
  
      /// <summary>
      /// 经营时间(自由文本)
      /// </summary>
      public string? OperatingHours { get; set; }
  
      public bool State { get; set; } = true;
  }