DigitalFactory/Admin.NET/Admin.NET.Application/Entity/PrintData.cs

39 lines
970 B
C#
Raw Normal View History

2024-05-16 10:13:39 +00:00
using Admin.NET.Core;
namespace Admin.NET.Application.Entity;
/// <summary>
/// 打印信息
/// </summary>
[SugarTable("PrintData","打印信息")]
public class PrintData : EntityBaseId
{
/// <summary>
/// 条码数据
/// </summary>
[SugarColumn(ColumnName = "BarCode", ColumnDescription = "条码数据", Length = 64)]
public string? BarCode { get; set; }
/// <summary>
/// 二维码数据
/// </summary>
[SugarColumn(ColumnName = "QrCode", ColumnDescription = "二维码数据", Length = 128)]
public string? QrCode { get; set; }
2024-06-06 10:22:07 +00:00
/// <summary>
/// 包装名称
/// </summary>
public string PackageName { get; set; }
/// <summary>
/// 父条码
/// </summary>
public string FatherCode { get; set; }
2024-05-16 10:13:39 +00:00
/// <summary>
/// 备注
/// </summary>
[SugarColumn(ColumnName = "Remark", ColumnDescription = "备注", Length = 32)]
public string? Remark { get; set; }
}