Valeo_Line_MES_backend/MDM/Services/Plant/IService/IPlantPlcIoPointService.cs
2026-01-10 13:47:54 +08:00

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);
}
}