using HighWayIot.Repository.domain;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Repository.service
{
public interface IHeartbeatService
{
///
/// 获取RFID心跳状态列表
///
///
List GetHeartbeatInfos();
///
/// 新增一条心跳
///
///
void AddHeartbeatInfo(RFIDHeartbeat heartbeat);
///
/// 更新对应ID的心跳
///
///
/// 影响的行数
int UpdateHeartbeatInfo(string ip);
}
}