using MDM.Model;
using MDM.Model.Plant;
using MDM.Model.Plant.Dto;
using MDM.Service;
namespace MDM.Services.IPlantService
{
///
/// PLC点位service接口
///
public interface IPlantPlcIoPointService : IBaseService
{
PagedInfo GetList(PlantPlcIoPointQueryDto parm);
PlantPlcIoPoint GetInfo(int Id);
PlantPlcIoPoint AddPlantPlcIoPoint(PlantPlcIoPoint parm);
int UpdatePlantPlcIoPoint(PlantPlcIoPoint parm);
}
}