From c934c86756aaf57de17bb05cba621ad9b2d0769c Mon Sep 17 00:00:00 2001 From: zhoukeda <1315948824@qq.com> Date: Tue, 24 Oct 2023 09:56:47 +0800 Subject: [PATCH] bug --- .../PrdManage/ProductionSchedulingCrInput.cs | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/ProductionSchedulingCrInput.cs b/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/ProductionSchedulingCrInput.cs index 54744d0d..dbf0f85d 100644 --- a/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/ProductionSchedulingCrInput.cs +++ b/ProductionMgr/Tnb.ProductionMgr.Entities/Dto/PrdManage/ProductionSchedulingCrInput.cs @@ -37,19 +37,33 @@ namespace Tnb.ProductionMgr.Entities.Dto /// public DateTime? plan_end_date { get; set; } + // /// + // /// Desc:预计开始时间 + // /// Default: + // /// Nullable:True + // /// + // public DateTime? estimated_start_date { get; set; } + // + // /// + // /// Desc:预计结束时间 + // /// Default: + // /// Nullable:True + // /// + // public DateTime? estimated_end_date { get; set; } + /// /// Desc:预计开始时间 /// Default: /// Nullable:True /// - public DateTime? estimated_start_date { get; set; } + public string? estimated_start_date { get; set; } /// /// Desc:预计结束时间 /// Default: /// Nullable:True /// - public DateTime? estimated_end_date { get; set; } + public string? estimated_end_date { get; set; }