IShowSbxjService.java 782 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. package com.railway.business.bi.service;
  2. import com.railway.business.bi.domain.ShowSbxj;
  3. import com.railway.business.bi.domain.vo.SbxjVO;
  4. import java.util.List;
  5. /**
  6. * 大屏展示-电力设备巡检兑现表
  7. * @author ZhaoMn
  8. * @date 2023/01/30
  9. */
  10. public interface IShowSbxjService{
  11. /**
  12. * 新增
  13. */
  14. int create(ShowSbxj showSbxj);
  15. /**
  16. * 删除
  17. */
  18. int delete(String[] ids);
  19. /**
  20. * 更新
  21. */
  22. int update(ShowSbxj showSbxj);
  23. /**
  24. * 获取单个
  25. */
  26. ShowSbxj getInfo(String id);
  27. /**
  28. * 查询列表
  29. */
  30. List<ShowSbxj> getList(ShowSbxj showSbxj);
  31. /**
  32. * 查询某月的计划和兑现情况
  33. * @param month 月份 1-12
  34. * @return 查询结果
  35. */
  36. List<SbxjVO> getTotal(int month);
  37. }