UsAppLabelPrintOutputDto.cs 623 Bytes
using System.Collections.Generic;

namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;

/// <summary>
/// App 打印出参(接口 9 / 11)
/// </summary>
public class UsAppLabelPrintOutputDto
{
    public string TaskId { get; set; } = string.Empty;

    public int PrintQuantity { get; set; }

    public string? BatchId { get; set; }

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

    /// <summary>
    /// 模板含 Label ID 控件时:本批次各份标签的门店当日打印序号(yyyyMMdd-n)。
    /// </summary>
    public List<string> PrintLabelDisplayIds { get; set; } = new();
}