Valeo_Line_MES_backend/MDM/Services/Plant/IService/IPlantWorkstationService.cs
2026-01-10 13:47:54 +08:00

31 lines
828 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);
}
}