26 lines
689 B
C#
26 lines
689 B
C#
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 {
|
|
/// <summary>
|
|
/// 报警区域表service接口
|
|
/// </summary>
|
|
public interface IAndonAlarmAreaService : IBaseService<AndonAlarmArea>
|
|
{
|
|
PagedInfo<AndonAlarmAreaDto> GetList(AndonAlarmAreaQueryDto parm);
|
|
|
|
AndonAlarmArea GetInfo(int Id);
|
|
|
|
AndonAlarmArea AddAndonAlarmArea(AndonAlarmArea parm);
|
|
|
|
int UpdateAndonAlarmArea(AndonAlarmArea parm);
|
|
ApiResult GetPullDownP();
|
|
ApiResult GetPullDownByPID(AlarmAreaPullDownDto parm);
|
|
}
|
|
}
|