using System; using ZR.Model; using System.Collections.Generic; using ZR.Model.MES.andon; using ZR.Model.MES.andon.Dto; using Infrastructure.Model; namespace ZR.Service.mes.andon.Iservice { /// /// 报警区域表service接口 /// public interface IAndonAlarmAreaService : IBaseService { PagedInfo GetList(AndonAlarmAreaQueryDto parm); AndonAlarmArea GetInfo(int Id); AndonAlarmArea AddAndonAlarmArea(AndonAlarmArea parm); int UpdateAndonAlarmArea(AndonAlarmArea parm); ApiResult GetPullDownP(); ApiResult GetPullDownByPID(AlarmAreaPullDownDto parm); } }