using Admin.NET.Core;
namespace Admin.NET.Application.Entity;
///
/// 产码配置
///
[SugarTable("ProductCodeConfiguration","产码配置")]
public class ProductCodeConfiguration : EntityTenant
{
///
/// 条码类型
///
[SugarColumn(ColumnName = "CodeType", ColumnDescription = "条码类型", Length = 32)]
public string? CodeType { get; set; }
///
/// 条码类型ID
///
[SugarColumn(ColumnName = "CodeTypeId", ColumnDescription = "条码类型ID")]
public long? CodeTypeId { get; set; }
///
/// 条码长度
///
[SugarColumn(ColumnName = "CodeLength", ColumnDescription = "条码长度")]
public int? CodeLength { get; set; }
///
/// 内码长度
///
[SugarColumn(ColumnName = "InternalCodeLength", ColumnDescription = "内码长度")]
public int? InternalCodeLength { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "Remarks", ColumnDescription = "备注", Length = 32)]
public string? Remarks { get; set; }
}