namespace FoodLabeling.Application.Contracts.Dtos.Label;
public class LabelGetOutputDto
{
public string Id { get; set; } = string.Empty;
public string LabelName { get; set; } = string.Empty;
public string LocationId { get; set; } = string.Empty;
public string LocationName { get; set; } = string.Empty;
/// 适用 Company Id(由所属门店反推)
public string? PartnerId { get; set; }
public List PartnerIds { get; set; } = new();
/// 适用 Region Id(fl_group.Id)
public List RegionIds { get; set; } = new();
/// 与 相同
public List GroupIds { get; set; } = new();
public string LabelCategoryId { get; set; } = string.Empty;
public string LabelCategoryName { get; set; } = string.Empty;
public string LabelTypeId { get; set; } = string.Empty;
public string LabelTypeName { get; set; } = string.Empty;
public string TemplateCode { get; set; } = string.Empty;
public string TemplateName { get; set; } = string.Empty;
public bool State { get; set; }
public object? LabelInfoJson { get; set; }
public List ProductIds { get; set; } = new();
}