using HH.AMS.Entitys.AdminUI.Device;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HH.AMS.Ex.Interface
{
///
/// 警报管理接口
///
public interface IAlarmInterface
{
///
/// 获取分页数据
///
///
///
List GetList(int pageIndex, int pageSize, string strWhere, string orderBy, out long total, out long totalPage);
///
/// 根据GUID获取数据
///
///
///
TN_AM_ALARMEntity GetAlarmData(string guid);
///
/// 保存警报处理
///
///
///
bool SaveData(TN_AM_ALARMEntity entity);
}
}