zhuangpei-mesbackend/MDM/Services/Plant/IService/IPlantWorkstationService.cs

31 lines
828 B
C#
Raw Normal View History

2025-11-15 14:33:00 +08:00
2025-11-16 15:16:51 +08:00
using MDM.Model;
using MDM.Model.Plant;
using MDM.Model.Plant.Dto;
using MDM.Service;
2025-11-15 14:33:00 +08:00
2025-11-16 15:16:51 +08:00
namespace MDM.Services.IPlantService
2025-11-15 14:33:00 +08:00
{
/// <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);
2026-01-04 14:24:43 +08:00
List<PlantFactorySite> GetFactorySite(string site_code);
2026-01-04 15:33:27 +08:00
List<PlantWorkshop> GetWorkShop(string site_code, string workshop_code);
2026-01-04 14:24:43 +08:00
2026-01-04 15:33:27 +08:00
List<PlantProductlinebody> GetPlantProductlinebodies(string site_code, string workshop_code, string linecode);
2026-01-04 14:24:43 +08:00
2025-11-15 14:33:00 +08:00
}
}