Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Partner/PartnerCreateInputVo.cs 461 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  namespace FoodLabeling.Application.Contracts.Dtos.Partner;
  
  /// <summary>
  /// 新建合作伙伴入参
  /// </summary>
  public class PartnerCreateInputVo : PartnerAddressFieldsDto
  {
      public string PartnerName { get; set; } = string.Empty;
  
      public string? ContactEmail { get; set; }
  
      public string? PhoneNumber { get; set; }
  
      /// <summary>
      /// 是否启用(Active / Inactive
      /// </summary>
      public bool State { get; set; } = true;
  }