59e51671
“wangming”
1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using System.Text.Json;
namespace FoodLabeling.Application.Contracts.Dtos.UsAppLabeling;
/// <summary>
/// 打印明细快照(接口 10,对应 fl_label_print_data 解析后的元素级信息)
/// </summary>
public class PrintLogDataItemDto
{
public string ElementId { get; set; } = string.Empty;
public string RenderValue { get; set; } = string.Empty;
/// <summary>
/// 元素完整 JSON(与 LabelTemplateElementDto / 编辑器 elements[] 项同构),供 App 重打组装模板。
/// </summary>
public JsonElement? RenderConfigJson { get; set; }
}
|