using System;
using System.Collections.Generic;
namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;
///
/// App 标签预览入参
///
public class UsAppLabelPreviewInputVo
{
///
/// 门店Id(fl_label.LocationId)
///
public string LocationId { get; set; } = string.Empty;
///
/// 标签编码(fl_label.LabelCode)
///
public string LabelCode { get; set; } = string.Empty;
///
/// 选择用于预览的产品Id(fl_product.Id)
/// 不传则默认取该标签绑定的第一个产品
///
public string? ProductId { get; set; }
///
/// 业务基准时间(用于 DATE/TIME 等元素的计算)
///
public DateTime? BaseTime { get; set; }
///
/// 打印输入(用于 PRINT_INPUT 元素)
///
public Dictionary? PrintInputJson { get; set; }
}