using System.Text.Json; namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling; /// /// 打印明细快照(接口 10,对应 fl_label_print_data 解析后的元素级信息) /// public class PrintLogDataItemDto { public string ElementId { get; set; } = string.Empty; public string RenderValue { get; set; } = string.Empty; /// /// 元素完整 JSON(与 LabelTemplateElementDto / 编辑器 elements[] 项同构),供 App 重打组装模板。 /// public JsonElement? RenderConfigJson { get; set; } }