From 8dfeb952db4c7a7b24ed658341c59d4b99f3494e Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期二, 11 三月 2025 09:24:31 +0800 Subject: [PATCH] 雅达-简化收货单创建逻辑并更新数据类型 --- Tiger.Model.Net/Entitys/BAS/BAS_DFT_LOC.cs | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Tiger.Model.Net/Entitys/BAS/BAS_DFT_LOC.cs b/Tiger.Model.Net/Entitys/BAS/BAS_DFT_LOC.cs index 301139f..152dae0 100644 --- a/Tiger.Model.Net/Entitys/BAS/BAS_DFT_LOC.cs +++ b/Tiger.Model.Net/Entitys/BAS/BAS_DFT_LOC.cs @@ -10,6 +10,7 @@ /// 实体:缺陷位置 /// </summary> [Description("Primary:ID")] + [DisplayName("缺陷位置")] [Serializable] [SugarTable("BAS_DFT_LOC")] public class BAS_DFT_LOC : DbEntityWithAuth @@ -25,14 +26,17 @@ /// <summary> /// 缺陷位置编码 /// </summary> + [DisplayName("缺陷位置编码")] public string LOC_CODE { get; set; } /// <summary> /// 缺陷位置名称 /// </summary> + [DisplayName("缺陷位置名称")] public string LOC_NAME { get; set; } /// <summary> /// 备注 /// </summary> + [DisplayName("备注")] public string REMARK { get; set; } #endregion -- Gitblit v1.9.3