开始时间

This commit is contained in:
2025-09-08 16:12:02 +08:00
parent 1e4ee840a3
commit 870f94b2d4
4 changed files with 47 additions and 13 deletions

View File

@ -53,16 +53,21 @@ public interface WEBDeviceService extends IService<Device> {
* 设备操作记录
*
* @param deviceId
* @param startTime 开始时间
* @param endTime 结束时间
* @return
*/
List<DeviceLog> getOperationRecord(Long deviceId);
List<DeviceLog> getOperationRecord(Long deviceId, String startTime, String endTime);
/**
* 设备告警记录
*
* @param deviceId
* @param startTime 开始时间
* @param endTime 结束时间
* @return
*/
List<DeviceAlarmVo> getAlarmRecord(Long deviceId);
List<DeviceAlarmVo> getAlarmRecord(Long deviceId, String startTime, String endTime);
}