namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling; /// /// App Labeling 四级列表入参 /// public class UsAppLabelingTreeInputVo { /// 当前门店 Id(location.Id,Guid 字符串) public string LocationId { get; set; } = string.Empty; /// 关键词(匹配标签分类/产品分类/产品名/标签类型/标签名称) public string? Keyword { get; set; } /// 仅展示某一标签分类(侧边栏选中时传);不传则返回全部分类 public string? LabelCategoryId { get; set; } }