Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Group/GroupCreateInputVo.cs 404 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  namespace FoodLabeling.Application.Contracts.Dtos.Group;
  
  /// <summary>
  /// 新建组织入参
  /// </summary>
  public class GroupCreateInputVo
  {
      public string GroupName { get; set; } = string.Empty;
  
      /// <summary>
      /// 指派到的合作伙伴 IdAssign to Partner
      /// </summary>
      public string PartnerId { get; set; } = string.Empty;
  
      public bool State { get; set; } = true;
  }