From bcb2bae4c85c5a7d576116ff9ae2a0c6d0011565 Mon Sep 17 00:00:00 2001 From: 啊鑫 <t2856754968@163.com> Date: 星期四, 10 七月 2025 10:07:05 +0800 Subject: [PATCH] Add project documentation and architecture guide --- MES.Service/Modes/SysDepartment.cs | 48 +++++++++++------------------------------------- 1 files changed, 11 insertions(+), 37 deletions(-) diff --git a/MES.Service/Modes/SysDepartment.cs b/MES.Service/Modes/SysDepartment.cs index f2b6669..7b99287 100644 --- a/MES.Service/Modes/SysDepartment.cs +++ b/MES.Service/Modes/SysDepartment.cs @@ -120,49 +120,23 @@ /// </summary> [SugarColumn(ColumnName = "ID", IsPrimaryKey = true)] public decimal Id { get; set; } + /// <summary> + /// 鍒涘缓缁勭粐 + /// </summary> + [SugarColumn(ColumnName = "CREATE_ORG")] + public decimal? CreateOrg { get; set; } /// <summary> - /// 鐢熶骇杞﹂棿 + /// 浣跨敤缁勭粐 /// </summary> - [SugarColumn(ColumnName = "PRODUCTION_WORKSHOP")] - public string? ProductionWorkshop { get; set; } + [SugarColumn(ColumnName = "USE_ORG")] + public decimal? UseOrg { get; set; } /// <summary> - /// 鐗╂枡灞炴�� + /// 涓婄骇閮ㄩ棬 /// </summary> - [SugarColumn(ColumnName = "MATERIAL_PROPERTI")] - public string? MaterialProperti { get; set; } - - /// <summary> - /// 鑷畾涔夊瓧娈�1 - /// </summary> - [SugarColumn(ColumnName = "REMARK1")] - public string? Remark1 { get; set; } - - /// <summary> - /// 鑷畾涔夊瓧娈�2 - /// </summary> - [SugarColumn(ColumnName = "REMARK2")] - public string? Remark2 { get; set; } - - /// <summary> - /// 鑷畾涔夊瓧娈�3 - /// </summary> - [SugarColumn(ColumnName = "REMARK3")] - public string? Remark3 { get; set; } - - /// <summary> - /// 鑷畾涔夊瓧娈�4 - /// </summary> - [SugarColumn(ColumnName = "REMARK4")] - public string? Remark4 { get; set; } - - /// <summary> - /// 鑷畾涔夊瓧娈�5 - /// </summary> - [SugarColumn(ColumnName = "REMARK5")] - public string? Remark5 { get; set; } - + [SugarColumn(ColumnName = "PARENT_ID")] + public decimal? ParentId { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } } \ No newline at end of file -- Gitblit v1.9.3