2026-01-10 13:47:54 +08:00
|
|
|
|
|
|
|
|
|
2026-01-31 10:00:18 +08:00
|
|
|
using Infrastructure.Model;
|
2026-01-10 13:47:54 +08:00
|
|
|
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);
|
|
|
|
|
|
2026-01-10 16:54:13 +08:00
|
|
|
List<PlantFactorySite> GetFactorySite(string? site_code);
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-10 16:54:13 +08:00
|
|
|
List<PlantWorkshop> GetWorkShop(string? site_code, string? workshop_code);
|
2026-01-10 13:47:54 +08:00
|
|
|
|
2026-01-10 16:54:13 +08:00
|
|
|
List<PlantProductlinebody> GetPlantProductlinebodies(string? site_code, string? workshop_code, string? linecode);
|
2026-01-31 10:00:18 +08:00
|
|
|
ApiResult GetWorkstationPulldown();
|
2026-01-10 13:47:54 +08:00
|
|
|
}
|
|
|
|
|
}
|