using System;
using System.Collections.Generic;
namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;
///
/// App 重新打印入参(根据历史任务Id重打)
///
public class UsAppLabelReprintInputVo
{
///
/// 当前门店Id(用于权限校验,必须与历史任务一致)
///
public string LocationId { get; set; } = string.Empty;
///
/// 历史打印任务Id(fl_label_print_task.Id)
///
public string TaskId { get; set; } = string.Empty;
///
/// 重新打印份数(<=0 则按 1 处理;默认 1)
///
public int PrintQuantity { get; set; } = 1;
///
/// 客户端幂等请求Id(可选)。
/// 同一个 clientRequestId 重复调用 reprint 接口时,后端会直接返回首次创建的 batchId/taskIds,不会重复写库。
///
public string? ClientRequestId { get; set; }
///
/// 重新打印时可覆盖打印机Id(可选)
///
public string? PrinterId { get; set; }
///
/// 重新打印时可覆盖打印机蓝牙 MAC(可选)
///
public string? PrinterMac { get; set; }
///
/// 重新打印时可覆盖打印机地址(可选)
///
public string? PrinterAddress { get; set; }
}