59e51671
“wangming”
1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using SqlSugar;
namespace FoodLabeling.Application.Services.DbModels;
/// <summary>
/// 标签打印数据明细(对应表:fl_label_print_data)
/// </summary>
[SugarTable("fl_label_print_data")]
public class FlLabelPrintDataDbEntity
{
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; } = string.Empty;
public string PrintTaskId { get; set; } = string.Empty;
public string ElementId { get; set; } = string.Empty;
public string? ElementName { get; set; }
public string? RenderValue { get; set; }
public string? RenderConfigJson { get; set; }
}
|