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; } + } }