From a4ae3bf5f1826e8e29a95da3dc2c947d713d4ebb Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期五, 06 六月 2025 15:38:14 +0800 Subject: [PATCH] 1.仓库信息储存逻辑调整 2.生产订单接口优化。 --- MES.Service/Modes/MesDepots.cs | 34 ++++++++++++++++++++++++++++------ 1 files changed, 28 insertions(+), 6 deletions(-) diff --git a/MES.Service/Modes/MesDepots.cs b/MES.Service/Modes/MesDepots.cs index 26bcf40..2896a89 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 @@ -12,7 +11,7 @@ /// 榛樿鍊�: (newid()) /// </summary> [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] - public Guid Guid { get; set; } + public string Guid { get; set; } /// <summary> /// ID(SEQ_INV_ID) @@ -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