From 21cce90e8d660954f0b89bfe25b9f5218dcbaacd Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期一, 12 五月 2025 00:32:34 +0800 Subject: [PATCH] 退料单(U9)上架事务 --- Tiger.Model.Net/Entitys/MES/YadaU9/mes_Supplier.cs | 24 ++++++++++++++++-------- 1 files changed, 16 insertions(+), 8 deletions(-) diff --git a/Tiger.Model.Net/Entitys/MES/YadaU9/mes_Supplier.cs b/Tiger.Model.Net/Entitys/MES/YadaU9/mes_Supplier.cs index 37c890b..c64264c 100644 --- a/Tiger.Model.Net/Entitys/MES/YadaU9/mes_Supplier.cs +++ b/Tiger.Model.Net/Entitys/MES/YadaU9/mes_Supplier.cs @@ -23,35 +23,43 @@ #region 公共属性 /// <summary> - /// + /// 供应商ID /// </summary> public long ID { get; set; } /// <summary> - /// + /// 组织 /// </summary> public long Org { get; set; } /// <summary> - /// + /// 供应商编码 /// </summary> public string Code { get; set; } /// <summary> - /// + /// 供应商名称 /// </summary> public string Name { get; set; } /// <summary> - /// + /// 供应商简称 /// </summary> public string ShortName { get; set; } /// <summary> - /// + /// 部门名称 /// </summary> public string DepartmentName { get; set; } /// <summary> - /// + /// 付款期限 + /// </summary> + public string PaymentTerm { get; set; } + /// <summary> + /// 财务确认期限 + /// </summary> + public string APConfirmTerm { get; set; } + /// <summary> + /// 创建时间 /// </summary> public DateTime CreatedOn { get; set; } = DateTime.MinValue; /// <summary> - /// + /// 更新时间 /// </summary> public DateTime ModifiedOn { get; set; } = DateTime.MinValue; #endregion -- Gitblit v1.9.3