From ade808e926b4ac0284756ee62d5f3fa90aabe814 Mon Sep 17 00:00:00 2001 From: yangbin <yangbin@qq.com> Date: 星期四, 20 二月 2025 15:13:40 +0800 Subject: [PATCH] 大屏看板3 --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/EquipmentStatisticalInfoMapper.java | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/EquipmentStatisticalInfoMapper.java b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/EquipmentStatisticalInfoMapper.java index 330a18a..3f88e6c 100644 --- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/EquipmentStatisticalInfoMapper.java +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/EquipmentStatisticalInfoMapper.java @@ -1,11 +1,20 @@ package org.jeecg.modules.mdc.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Param; 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:05 */ public interface EquipmentStatisticalInfoMapper extends BaseMapper<EquipmentStatisticalInfo> { + + List<LastWeekDataVo> findDataRankingForBigScreen(@Param("equipmentIdList") List<String> equipmentIdList, @Param("monday") String monday, @Param("saturday") String saturday); + List<String> findEquipmentId(@Param("equipmentIdList") List<String> equipmentIdList, @Param("date") String date); + List<LastWeekDataVo> findDataForBigScreen(@Param("equipmentIdList") List<String> equipmentIdList, @Param("monday") String monday, @Param("saturday") String saturday); + } -- Gitblit v1.9.3