From 1a8952cd3e7dac0fe563666b75233f63f0aa4a6e Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期三, 28 八月 2024 20:07:44 +0800 Subject: [PATCH] 条码规则定义增加字段 --- Tiger.Model.Net/Entitys/BAS/BAS_REASON.cs | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/BAS/BAS_REASON.cs b/Tiger.Model.Net/Entitys/BAS/BAS_REASON.cs index 119c369..058a8ab 100644 --- a/Tiger.Model.Net/Entitys/BAS/BAS_REASON.cs +++ b/Tiger.Model.Net/Entitys/BAS/BAS_REASON.cs @@ -10,6 +10,7 @@ /// 实体:不良原因 /// </summary> [Description("Primary:ID")] + [DisplayName("不良原因")] [Serializable] [SugarTable("BAS_REASON")] public class BAS_REASON : DbEntityWithAuth @@ -25,22 +26,27 @@ /// <summary> /// 不良原因编码 /// </summary> + [DisplayName("不良原因编码")] public string RSN_CODE { get; set; } /// <summary> /// 不良原因名称 /// </summary> + [DisplayName("不良原因名称")] public string RSN_NAME { get; set; } /// <summary> /// 不良原因组编码 /// </summary> + [DisplayName("不良原因组编码")] public string RSNG_CODE { get; set; } /// <summary> /// 是否必须更换零件(Y/N) /// </summary> + [DisplayName("是否必须更换零件(Y/N)")] public string NEED_REPLACE { get; set; } /// <summary> /// 备注 /// </summary> + [DisplayName("备注")] public string REMARK { get; set; } #endregion -- Gitblit v1.9.3