using MDM.Model;
using MDM.Model.Plant;
using MDM.Model.Plant.Dto;
using MDM.Service;
namespace MDM.Services.IPlantService
{
///
/// 产线/线体/工作中心service接口
///
public interface IPlantProductlinebodyService : IBaseService
{
PagedInfo GetList(PlantProductlinebodyQueryDto parm);
PlantProductlinebody GetInfo(int LineId);
PlantProductlinebody AddPlantProductlinebody(PlantProductlinebody parm);
int UpdatePlantProductlinebody(PlantProductlinebody parm);
List GetAllLine();
List GetWorkstationList(int id);
List GetFactorySite();
List GetWorkShop(string site_code);
}
}