From 14fbcfe791f1f3cdedcc25eee5760dd4e85326af Mon Sep 17 00:00:00 2001
From: Rodney Chen <rodney.chen@hotmail.com>
Date: 星期日, 02 六月 2024 15:30:10 +0800
Subject: [PATCH] 维修实体优化

---
 Tiger.Model.Net/Entitys/BAS/BAS_DFT_DUTY.cs |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/Tiger.Model.Net/Entitys/BAS/BAS_DFT_DUTY.cs b/Tiger.Model.Net/Entitys/BAS/BAS_DFT_DUTY.cs
index 2501837..4264ebd 100644
--- a/Tiger.Model.Net/Entitys/BAS/BAS_DFT_DUTY.cs
+++ b/Tiger.Model.Net/Entitys/BAS/BAS_DFT_DUTY.cs
@@ -10,6 +10,7 @@
 	/// 实体:不良责任
 	/// </summary>
 	[Description("Primary:ID")]
+	[DisplayName("不良责任")]
 	[Serializable]
 	[SugarTable("BAS_DFT_DUTY")]
 	public class BAS_DFT_DUTY : DbEntityWithAuth
@@ -25,14 +26,17 @@
 		/// <summary>
 		/// 不良责任编码
 		/// </summary>
-		public string RSN_CODE { get; set; }
+		[DisplayName("不良责任编码")]
+		public string DUTY_CODE { get; set; }
 		/// <summary>
 		/// 不良责任名称
 		/// </summary>
-		public string RSN_NAME { get; set; }
+		[DisplayName("不良责任名称")]
+		public string DUTY_NAME { get; set; }
 		/// <summary>
 		/// 备注
 		/// </summary>
+		[DisplayName("备注")]
 		public string REMARK { get; set; }
 		#endregion
 

--
Gitblit v1.9.3