Blame view

泰额版/Food Labeling Management Code/Yi.Abp.Net8/module/food-labeling-us/FoodLabeling.Application.Contracts/Dtos/UsAppLabeling/UsAppLabelingTreeInputVo.cs 623 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.UsAppLabeling;
  
  /// <summary>
  /// App Labeling 四级列表入参
  /// </summary>
  public class UsAppLabelingTreeInputVo
  {
      /// <summary>当前门店 Idlocation.IdGuid 字符串)</summary>
      public string LocationId { get; set; } = string.Empty;
  
      /// <summary>关键词(匹配标签分类/产品分类/产品名/标签类型/标签名称)</summary>
      public string? Keyword { get; set; }
  
      /// <summary>仅展示某一标签分类(侧边栏选中时传);不传则返回全部分类</summary>
      public string? LabelCategoryId { get; set; }
  }