From ed0b898d7f0c05516e83133c8bc5b45e14876a28 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期一, 17 二月 2025 14:43:52 +0800 Subject: [PATCH] 1.采购订单时间调整 2.采购订单接口新增route --- MES.Service/Modes/MesDepots.cs | 32 +++++++++++++++++++++++++++----- 1 files changed, 27 insertions(+), 5 deletions(-) diff --git a/MES.Service/Modes/MesDepots.cs b/MES.Service/Modes/MesDepots.cs index 26bcf40..022bcf5 100644 --- a/MES.Service/Modes/MesDepots.cs +++ b/MES.Service/Modes/MesDepots.cs @@ -3,7 +3,6 @@ namespace MES.Service.Modes; /// <summary> -/// 浠撳簱淇℃伅 /// </summary> [SugarTable("MES_DEPOTS")] public class MesDepots @@ -192,17 +191,40 @@ public bool? CheckStatus { get; set; } /// <summary> - /// 浣跨敤绲勭箶 + /// 鍒涘缓缁勭粐 + /// </summary> + [SugarColumn(ColumnName = "Fumbrella")] + public string? Fumbrella { get; set; } + + /// <summary> + /// 浣跨敤缁勭粐 /// </summary> [SugarColumn(ColumnName = "FSubsidiary")] public string? FSubsidiary { get; set; } /// <summary> - /// 鍓靛缓绲勭箶 + /// 渚涘簲鍟� /// </summary> - [SugarColumn(ColumnName = "Fumbrella")] - public string? Fumbrella { get; set; } + [SugarColumn(ColumnName = "SUPPLIER_ID")] + public string? SupplierId { get; set; } + /// <summary> + /// 瀹㈡埛 + /// </summary> + [SugarColumn(ColumnName = "Client_Id")] + public string? ClientId { get; set; } + + /// <summary> + /// 閮ㄩ棬 + /// </summary> + [SugarColumn(ColumnName = "department")] + public string? Department { get; set; } + + /// <summary> + /// 鑱旂郴鐢佃瘽 + /// </summary> + [SugarColumn(ColumnName = "Phone")] + public string? Phone { get; set; } [SugarColumn(IsIgnore = true)] public string? Type { get; set; } } \ No newline at end of file -- Gitblit v1.9.3