2025-11-20 14:44:46 +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 IPlantProductlinebodyService : IBaseService<PlantProductlinebody>
|
|
|
|
|
{
|
|
|
|
|
PagedInfo<PlantProductlinebodyDto> GetList(PlantProductlinebodyQueryDto parm);
|
|
|
|
|
|
|
|
|
|
PlantProductlinebody GetInfo(int LineId);
|
|
|
|
|
|
|
|
|
|
PlantProductlinebody AddPlantProductlinebody(PlantProductlinebody parm);
|
|
|
|
|
|
|
|
|
|
int UpdatePlantProductlinebody(PlantProductlinebody parm);
|
|
|
|
|
|
2025-11-25 09:32:28 +08:00
|
|
|
List<LinePullDownDto> GetAllLine();
|
|
|
|
|
|
2026-01-07 20:07:24 +08:00
|
|
|
List<PlantWorkstation> GetWorkstationList(int id);
|
2026-01-10 10:34:11 +08:00
|
|
|
List<PlantFactorySite> GetFactorySite();
|
2026-01-07 20:07:24 +08:00
|
|
|
|
2026-01-10 10:34:11 +08:00
|
|
|
List<PlantWorkshop> GetWorkShop(string site_code);
|
2026-01-07 20:07:24 +08:00
|
|
|
|
2025-11-20 14:44:46 +08:00
|
|
|
}
|
|
|
|
|
}
|