1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package org.jeecg.modules.mdc.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import org.jeecg.modules.mdc.entity.EquipmentLog;
|
| import java.util.Date;
| import java.util.List;
|
| /**
| * @author: LiuS
| * @create: 2023-04-12 14:40
| */
| public interface IEquipmentLogService extends IService<EquipmentLog> {
|
| /**
| * 查询某个设备某个时间点之后的数据
| */
| List<EquipmentLog> findEquipmentLogByEndTime(String equipmentId, Date maxDate);
|
| /**
| * 查询某个设备某个时间点之后的数据(报警数据)
| */
| List<EquipmentLog> findEquipmentLogByErrorEndTime(String equipmentId, Date endTime);
| }
|
|