guiyang-fluorescent-line-lm.../MDM/Services/Plant/IService/IPlantProductlinebodyService.cs
2026-01-10 10:34:11 +08:00

31 lines
816 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 IPlantProductlinebodyService : IBaseService<PlantProductlinebody>
{
PagedInfo<PlantProductlinebodyDto> GetList(PlantProductlinebodyQueryDto parm);
PlantProductlinebody GetInfo(int LineId);
PlantProductlinebody AddPlantProductlinebody(PlantProductlinebody parm);
int UpdatePlantProductlinebody(PlantProductlinebody parm);
List<LinePullDownDto> GetAllLine();
List<PlantWorkstation> GetWorkstationList(int id);
List<PlantFactorySite> GetFactorySite();
List<PlantWorkshop> GetWorkShop(string site_code);
}
}