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; }