using MDM.Model;
using MDM.Model.Plant;
using MDM.Model.Plant.Dto;
using MDM.Service;
namespace MDM.Services.IPlantService
{
///
/// 工站/资源组service接口
///
public interface IPlantWorkstationService : IBaseService
{
PagedInfo GetList(PlantWorkstationQueryDto parm);
PlantWorkstation GetInfo(int WorkstationId);
PlantWorkstation AddPlantWorkstation(PlantWorkstation parm);
int UpdatePlantWorkstation(PlantWorkstation parm);
List GetFactorySite(string? site_code);
List GetWorkShop(string? site_code, string? workshop_code);
List GetPlantProductlinebodies(string? site_code, string? workshop_code, string? linecode);
object GetWorkstation();
}
}