From e52a9fbf473052c6330f5e91c858b5c12d966ca8 Mon Sep 17 00:00:00 2001 From: quowingwang Date: Sat, 31 Jan 2026 09:18:47 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E7=AB=99=E4=B8=8B=E6=8B=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MDM/Models/Plant/Dto/PlantWorkstationDto.cs | 6 ++++++ MDM/Services/Plant/IService/IPlantWorkstationService.cs | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/MDM/Models/Plant/Dto/PlantWorkstationDto.cs b/MDM/Models/Plant/Dto/PlantWorkstationDto.cs index 79a3f0f..44bd848 100644 --- a/MDM/Models/Plant/Dto/PlantWorkstationDto.cs +++ b/MDM/Models/Plant/Dto/PlantWorkstationDto.cs @@ -70,4 +70,10 @@ namespace MDM.Model.Plant.Dto } + + public class WorkSrationPullDown + { + public string? label { get; set; } + public string? value { get; set; } + } } \ No newline at end of file diff --git a/MDM/Services/Plant/IService/IPlantWorkstationService.cs b/MDM/Services/Plant/IService/IPlantWorkstationService.cs index c21a3d9..f47f990 100644 --- a/MDM/Services/Plant/IService/IPlantWorkstationService.cs +++ b/MDM/Services/Plant/IService/IPlantWorkstationService.cs @@ -25,6 +25,6 @@ namespace MDM.Services.IPlantService List GetWorkShop(string? site_code, string? workshop_code); List GetPlantProductlinebodies(string? site_code, string? workshop_code, string? linecode); - + object GetWorkstation(); } }