DriverStockService.java 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. package com.template.services;
  2. import com.github.pagehelper.PageInfo;
  3. import com.template.model.tongji.MeterPage;
  4. import com.template.model.tongji.Tj;
  5. import com.template.model.tongji.TjFloat;
  6. import com.template.model.tongji.userPage;
  7. import org.apache.ibatis.annotations.Param;
  8. import java.util.List;
  9. public interface DriverStockService {
  10. // 年级统计
  11. public List<Tj> getClassTj();
  12. // 访客统计
  13. public List<Tj> getVisitorTj();
  14. // 能耗总量统计
  15. public List<TjFloat> getEnergyTj();
  16. // 每栋楼电费月统计
  17. public List<TjFloat> getEnergyMonth(@Param("date") String date, @Param("type") Integer type);
  18. // 总设备数
  19. public List<TjFloat> getTotalDevice();
  20. // 在线设备数
  21. public List<TjFloat> getOnlineDevice(@Param("date") String date);
  22. public PageInfo<MeterPage> getMeterDetail(@Param("meterType") Integer meterType);
  23. // 用户结构
  24. public List<Tj> getUserComp();
  25. // 用户汇总学生
  26. public PageInfo<userPage> getUserPage(String key,Integer identityId);
  27. // 教学成果
  28. public List<Tj> getScorePer(@Param("examName") String examName,@Param("updateUser") String updateUser);
  29. // 考试名称
  30. public List<Tj> getExamName();
  31. // 教师评分
  32. public Tj getTeacherExam(@Param("cardNo") String cardNo);
  33. }