Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/Group/GroupUpdateInputVo.cs 308 Bytes
59e51671   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
  namespace FoodLabeling.Application.Contracts.Dtos.Group;
  
  /// <summary>
  /// 编辑组织入参
  /// </summary>
  public class GroupUpdateInputVo
  {
      public string GroupName { get; set; } = string.Empty;
  
      public string PartnerId { get; set; } = string.Empty;
  
      public bool State { get; set; } = true;
  }