UsAppLabelingTreeInputVo.cs 623 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;

/// <summary>
/// App Labeling 四级列表入参
/// </summary>
public class UsAppLabelingTreeInputVo
{
    /// <summary>当前门店 Id(location.Id,Guid 字符串)</summary>
    public string LocationId { get; set; } = string.Empty;

    /// <summary>关键词(匹配标签分类/产品分类/产品名/标签类型/标签名称)</summary>
    public string? Keyword { get; set; }

    /// <summary>仅展示某一标签分类(侧边栏选中时传);不传则返回全部分类</summary>
    public string? LabelCategoryId { get; set; }
}