| | |
| | | /** |
| | | * @Description: 设备运行时段状态表 |
| | | * @Author: LiuS |
| | | * @Date: 2023-04-13 |
| | | * @Date: 2023-04-13 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IMdcEquipmentRunningSectionService extends IService<MdcEquipmentRunningSection> { |
| | |
| | | List<MdcEquipmentRunningSection> listForEquipmentStatisticalInfo(String equipmentId, Date startDate, Date endDate); |
| | | |
| | | /** |
| | | * 查询设备历史运行状态记录数据 |
| | | * 查询设备历史运行状态记录数据 |
| | | */ |
| | | List<Map<String, Object>> logChart(MdcEquipmentRunningSectionVo equipmentRunningSectionVo); |
| | | |
| | | /** |
| | | * 计算一段时间内的数据 |
| | | */ |
| | | List<MdcEquipmentRunningSection> listEquipmentRunningSection(String equipmentid, long start, long end); |
| | | |
| | | /** |
| | | * 查询某个设备一段时间内的数据 |
| | | */ |
| | | List<MdcEquipmentRunningSection> listRunningSectionFromLog(String equipmentid, long start, long end); |
| | | |
| | | /** |
| | | * 查询摸个设备一段时间内的运行数据 |
| | | */ |
| | | List<MdcEquipmentRunningSection> listEquipmentRunningSectionRun(String equipmentid, long start, long end); |
| | | |
| | | /** |
| | | * 查询摸个设备一段时间内的故障数据 |
| | | */ |
| | | List<MdcEquipmentRunningSection> listEquipmentRunningSectionError(String equipmentid, long start, long end); |
| | | } |