From 1e1b8c262ebe02e82f93c4344f9feb9624f77b52 Mon Sep 17 00:00:00 2001 From: zyf <1071160500@qq.com> Date: 星期二, 17 六月 2025 19:17:10 +0800 Subject: [PATCH] BOM接口优化逻辑 --- MES.Service/Modes/ProductionOrder.cs | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) diff --git a/MES.Service/Modes/ProductionOrder.cs b/MES.Service/Modes/ProductionOrder.cs index 872b65b..c40f8ae 100644 --- a/MES.Service/Modes/ProductionOrder.cs +++ b/MES.Service/Modes/ProductionOrder.cs @@ -84,13 +84,13 @@ /// 棰勮寮�宸ユ椂闂� ///</summary> [SugarColumn(ColumnName = "ESTIMATED_START_TIME")] - public DateTime? EstimatedStartTime { get; set; } + public DateTime? PlanStartDate { get; set; } /// <summary> /// 棰勮瀹屽伐鏃堕棿 ///</summary> [SugarColumn(ColumnName = "ESTIMATED_END_TIME")] - public DateTime? EstimatedEndTime { get; set; } + public DateTime? PlanFinishDate { get; set; } /// <summary> /// 璁″垝涓嬭揪鏃ユ湡 @@ -271,5 +271,11 @@ ///</summary> [SugarColumn(ColumnName = "STOCKOWNER")] public string? StockOwner { get; set; } + + /// <summary> + /// 渚涘簲鍟� + ///</summary> + [SugarColumn(ColumnName = "SUPP_NO")] + public string? SUPPLIER { get; set; } } } \ No newline at end of file -- Gitblit v1.9.3