32 lines
905 B
C#
32 lines
905 B
C#
|
|
|
|
using Infrastructure.Model;
|
|
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);
|
|
|
|
List<PlantFactorySite> GetFactorySite(string? site_code);
|
|
|
|
List<PlantWorkshop> GetWorkShop(string? site_code, string? workshop_code);
|
|
|
|
List<PlantProductlinebody> GetPlantProductlinebodies(string? site_code, string? workshop_code, string? linecode);
|
|
ApiResult GetWorkstationPulldown();
|
|
}
|
|
}
|