Blame view

美国版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Partner/PartnerCreateInputVo.cs 461 Bytes
4d328ec2   李曜臣   平台端报表reports,仪表盘D...
1
2
3
4
5
  namespace FoodLabeling.Application.Contracts.Dtos.Partner;
  
  /// <summary>
  /// 新建合作伙伴入参
  /// </summary>
10fd1324   李曜臣   5-17接口优化
6
  public class PartnerCreateInputVo : PartnerAddressFieldsDto
4d328ec2   李曜臣   平台端报表reports,仪表盘D...
7
8
9
10
11
12
13
  {
      public string PartnerName { get; set; } = string.Empty;
  
      public string? ContactEmail { get; set; }
  
      public string? PhoneNumber { get; set; }
  
10fd1324   李曜臣   5-17接口优化
14
15
16
      /// <summary>
      /// 是否启用(Active / Inactive
      /// </summary>
4d328ec2   李曜臣   平台端报表reports,仪表盘D...
17
18
      public bool State { get; set; } = true;
  }