package com.template.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.template.model.pojo.SmartUser; import com.template.model.tongji.*; import org.apache.ibatis.annotations.Param; import org.apache.poi.ss.formula.functions.T; import org.springframework.stereotype.Repository; import java.util.List; @Repository public interface DriverStockMapper extends BaseMapper { // 年级统计 public List getClassTj(); // 访客统计 public List getVisitorTj(); // 能耗总量统计 public List getEnergyTj(); // 每栋楼电费月统计 public List getEnergyMonth(@Param("date") String date,@Param("type") Integer type); // 总设备数 public List getTotalDevice(); // 在线设备数 public List getOnlineDevice(@Param("date") String date); public List getMeterDetail(@Param("meterType") Integer meterType); // 用户结构 public List getUserComp(); // 用户汇总学生 public List getUserPage(@Param("key") String key,@Param("identityId") Integer identityId); // 教学成果 public List getScorePer(@Param("examName") String examName,@Param("updateUser") String updateUser); // 考试名称 public List getExamName(); // 教师评分 public List getTeacherExam(@Param("cardNo") String cardNo); }