using Admin.NET.Application; using Admin.NET.Core; /* * @author : 刘文奇 * @date : 2024/5/22下午8:01:06 * @desc : 业务类型 */ namespace Admin.NET.Application.Entity { /// /// 业务类型 /// [SugarTable("wms_base_business_type", "业务类型")] public class WmsBaseBusinessType : EntityBase { /// /// 业务类型名称 /// [Required] [SugarColumn(ColumnName = "BusinessTypeName", ColumnDescription = "业务类型名称", Length = 50)] public string BusinessTypeName { get; set; } /// /// 业务类型值 /// [Required] [SugarColumn(ColumnName = "BusinessTypeValue", ColumnDescription = "业务类型值")] public int BusinessTypeValue { get; set; } /// /// 移动类型 /// [Required] [SugarColumn(ColumnName = "MoveType", ColumnDescription = "移动类型")] public MoveTypeEnum MoveType { get; set; } /// /// 移动类型名称 /// [SugarColumn(ColumnName = "MoveTypeName", ColumnDescription = "移动类型名称", Length = 50)] public string? MoveTypeName { get; set; } /// /// 移动类型编号 /// [SugarColumn(ColumnName = "MoveTypeCode", ColumnDescription = "移动类型编号", Length = 50)] public string? MoveTypeCode { get; set; } /// /// 操作类型 /// [SugarColumn(ColumnName = "UpDownShelvesType", ColumnDescription = "操作类型")] public UpDownShelvesTypeEnum? UpDownShelvesType { get; set; } /// /// 操作类型名称 /// [SugarColumn(ColumnName = "UpDownShelvesTypeName", ColumnDescription = "操作类型名称", Length = 50)] public string? UpDownShelvesTypeName { get; set; } /// /// 序号 /// [SugarColumn(ColumnName = "Seq", ColumnDescription = "序号")] public int? Seq { get; set; } /// /// 是否系统参数 /// [SugarColumn(ColumnName = "IsSystemParameter", ColumnDescription = "是否系统参数")] public bool? IsSystemParameter { get; set; } /// /// 下架单据是否自动完成 /// [SugarColumn(ColumnName = "DownShelvesIsAutoFinish", ColumnDescription = "下架单据是否自动完成")] public bool? DownShelvesIsAutoFinish { get; set; } /// /// 是否禁用 /// [Required] [SugarColumn(ColumnName = "IsDisabled", ColumnDescription = "是否禁用")] public bool IsDisabled { get; set; } } }