From c1e3d0fbef979426dd15930ff77987ed1832554b Mon Sep 17 00:00:00 2001 From: quowingwang Date: Thu, 29 Jan 2026 13:48:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E8=89=BA=E8=B7=AF=E7=BA=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MDM/Models/Plant/Dto/PlantWorkstationDto.cs | 3 +-- MDM/Models/Process/Dto/ProcessOperationDto.cs | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/MDM/Models/Plant/Dto/PlantWorkstationDto.cs b/MDM/Models/Plant/Dto/PlantWorkstationDto.cs index 0825335..79a3f0f 100644 --- a/MDM/Models/Plant/Dto/PlantWorkstationDto.cs +++ b/MDM/Models/Plant/Dto/PlantWorkstationDto.cs @@ -53,7 +53,6 @@ namespace MDM.Model.Plant.Dto public string? Description { get; set; } - [Required(ErrorMessage = "功能组编码,相同值的工站为相同功能,可互换不能为空")] public string? FunctionGroupCode { get; set; } public string? FunctionGroupName { get; set; } @@ -67,7 +66,7 @@ namespace MDM.Model.Plant.Dto public string? UpdatedBy { get; set; } public DateTime UpdatedTime { get; set; } - + } diff --git a/MDM/Models/Process/Dto/ProcessOperationDto.cs b/MDM/Models/Process/Dto/ProcessOperationDto.cs index 6ccff57..ceb877c 100644 --- a/MDM/Models/Process/Dto/ProcessOperationDto.cs +++ b/MDM/Models/Process/Dto/ProcessOperationDto.cs @@ -43,12 +43,15 @@ namespace MDM.Model.Process.Dto public int? OperationSeq { get; set; } + public int? LastOperationSeq { get; set; } public string? OperationType { get; set; } public string? Description { get; set; } public int? StandardTime { get; set; } + public int? MaxStationCount { get; set; } + public string? ControlStrategy { get; set; } public int IsSkippable { get; set; }