From 5b0b98470c3c3f88bbc1cca31f862a2416eebca2 Mon Sep 17 00:00:00 2001 From: liuwf Date: Sat, 23 Dec 2023 10:44:30 +0800 Subject: [PATCH] change. --- Admin.Core.Model/Model_New/BaseSpaceInfo.cs | 29 ++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/Admin.Core.Model/Model_New/BaseSpaceInfo.cs b/Admin.Core.Model/Model_New/BaseSpaceInfo.cs index d232bfc4..9d36764b 100644 --- a/Admin.Core.Model/Model_New/BaseSpaceInfo.cs +++ b/Admin.Core.Model/Model_New/BaseSpaceInfo.cs @@ -83,7 +83,7 @@ namespace Admin.Core.Model [SugarColumn(ColumnName = "UPDATED_TIME")] public DateTime? UpdatedTime { get; set; } /// - /// 物料类型 + /// 物料类型A /// [SugarColumn(ColumnName = "MATERIAL_TYPE")] public string MaterialType { get; set; } @@ -115,5 +115,32 @@ namespace Admin.Core.Model /// [SugarColumn(ColumnName = "UNUSUAL_FLAG")] public int UnusualFlag { get; set; } + + /// + /// 物料类型B + /// + [SugarColumn(ColumnName = "TYPE_CODE_B")] + public string typeCodeB { get; set; } + /// + /// 物料类型C + /// + [SugarColumn(ColumnName = "TYPE_CODE_C")] + public string typeCodeC { get; set; } + /// + /// 物料类型(名称)A + /// + [SugarColumn(ColumnName = "TYPE_NAME_A")] + public string typeNameA { get; set; } + /// + /// 物料类型(名称)B + /// + [SugarColumn(ColumnName = "TYPE_NAME_B")] + public string typeNameB { get; set; } + /// + /// 物料类型(名称)C + /// + [SugarColumn(ColumnName = "TYPE_NAME_C")] + public string typeNameC { get; set; } + } }