25 lines
560 B
C#
25 lines
560 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 IPlantWorkstationService : IBaseService<PlantWorkstation>
|
|
{
|
|
PagedInfo<PlantWorkstationDto> GetList(PlantWorkstationQueryDto parm);
|
|
|
|
PlantWorkstation GetInfo(int WorkstationId);
|
|
|
|
PlantWorkstation AddPlantWorkstation(PlantWorkstation parm);
|
|
|
|
int UpdatePlantWorkstation(PlantWorkstation parm);
|
|
|
|
}
|
|
}
|