LabelUpdateInputVo.cs 967 Bytes
namespace FoodLabeling.Application.Contracts.Dtos.Label;

public class LabelUpdateInputVo
{
    public string LabelName { get; set; } = string.Empty;

    public string TemplateCode { get; set; } = string.Empty;

    public string? PartnerId { get; set; }

    public List<string>? PartnerIds { get; set; }

    /// <summary>
    /// 适用 Region 范围:<c>ALL</c> / <c>SPECIFIED</c>(见 <see cref="RegionIds"/>)
    /// </summary>
    public string? AppliedRegionType { get; set; }

    public List<string>? RegionIds { get; set; }

    public List<string>? GroupIds { get; set; }

    public string? LocationId { get; set; }

    public List<string>? LocationIds { get; set; }

    public string LabelCategoryId { get; set; } = string.Empty;

    public string LabelTypeId { get; set; } = string.Empty;

    public List<string> ProductIds { get; set; } = new();

    public object? LabelInfoJson { get; set; }

    public bool State { get; set; } = true;
}