Valeo_Line_MES_backend/MDM/Services/Plant/IService/IPlantWorkstationService.cs
gcw_MV9p2JJN 33b25811de 1
2026-01-10 16:54:18 +08:00

31 lines
834 B
C#

using MDM.Model;
using MDM.Model.Plant;
using MDM.Model.Plant.Dto;
using MDM.Service;
namespace MDM.Services.IPlantService
{
/// <summary>
/// 工站/资源组service接口
/// </summary>
public interface IPlantWorkstationService : IBaseService<PlantWorkstation>
{
PagedInfo<PlantWorkstationDto> GetList(PlantWorkstationQueryDto parm);
PlantWorkstation GetInfo(int WorkstationId);
PlantWorkstation AddPlantWorkstation(PlantWorkstation parm);
int UpdatePlantWorkstation(PlantWorkstation parm);
List<PlantFactorySite> GetFactorySite(string? site_code);
List<PlantWorkshop> GetWorkShop(string? site_code, string? workshop_code);
List<PlantProductlinebody> GetPlantProductlinebodies(string? site_code, string? workshop_code, string? linecode);
}
}