| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.mdc.entity.EquipmentStatisticalInfo; |
| | | import org.jeecg.modules.mdc.subcontrol.vo.LastWeekDataVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author Lius |
| | | * @date 2023/10/24 14:04 |
| | | */ |
| | | public interface IEquipmentStatisticalInfoService extends IService<EquipmentStatisticalInfo> { |
| | | /** |
| | | * 查询段时间内的数据 |
| | | * |
| | | * @return |
| | | */ |
| | | List<LastWeekDataVo> findDataForBigScreen(List<String> equipmentIdList, String monday, String saturday); |
| | | |
| | | Integer findEquipmentId(List<String> equipmentIdList, String date); |
| | | |
| | | |
| | | /** |
| | | * 查询段时间内的数据(设备维度) |
| | | */ |
| | | List<LastWeekDataVo> findDataRankingForBigScreen(List<String> equipmentIdList, String monday, String saturday); |
| | | Long selectSize(String equipmentId, String monday, String saturday); |
| | | } |