25 lines
532 B
C#
25 lines
532 B
C#
|
|
|
|
using MDM.Model;
|
|
using MDM.Model.Plant;
|
|
using MDM.Model.Plant.Dto;
|
|
using MDM.Service;
|
|
|
|
namespace MDM.Services.IPlantService
|
|
{
|
|
/// <summary>
|
|
/// PLC点位service接口
|
|
/// </summary>
|
|
public interface IPlantPlcIoPointService : IBaseService<PlantPlcIoPoint>
|
|
{
|
|
PagedInfo<PlantPlcIoPointDto> GetList(PlantPlcIoPointQueryDto parm);
|
|
|
|
PlantPlcIoPoint GetInfo(int Id);
|
|
|
|
PlantPlcIoPoint AddPlantPlcIoPoint(PlantPlcIoPoint parm);
|
|
|
|
int UpdatePlantPlcIoPoint(PlantPlcIoPoint parm);
|
|
|
|
}
|
|
}
|