| | |
| | | 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); |
| | | |
| | | } |