25 lines
587 B
C#
25 lines
587 B
C#
|
|
|
||
|
|
|
||
|
|
using MES_Model.Model;
|
||
|
|
using MES_Model.Model.Business;
|
||
|
|
using MES_Model.Model.Dto;
|
||
|
|
using MES_Model.Service;
|
||
|
|
|
||
|
|
namespace MES_Model.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);
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|