HospProfitAndLossService.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package com.kcim.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.kcim.common.util.PageUtils;
  4. import com.kcim.dao.model.HospProfitAndLoss;
  5. /**
  6. * 全院损益表
  7. *
  8. * @author huangrui
  9. * @email
  10. * @date 2021-08-27 14:20:53
  11. */
  12. public interface HospProfitAndLossService extends IService<HospProfitAndLoss> {
  13. /**
  14. * 计算全院损益
  15. *
  16. * @param date yyyy-MM-dd 时间
  17. * @param hospId 医院id
  18. */
  19. void calc(String date, Long hospId);
  20. /**
  21. * 全院损益列表
  22. *
  23. * @param current 当前页
  24. * @param pageSize 每页展示数据大小
  25. * @param date 日期
  26. * @param hospId 医院id
  27. * @return PageUtils
  28. */
  29. PageUtils getHospProfits(Integer current, Integer pageSize, String date, Long hospId);
  30. /**
  31. * 导出全院损益计算
  32. * @param date yyyy-MM-dd
  33. * @param hospId
  34. */
  35. void hospProfitReport(String date, Long hospId) ;
  36. /**
  37. *
  38. * @param date
  39. * @param hospId
  40. */
  41. void calcByResponsibility(String date, Long hospId);
  42. PageUtils hospProfitReports(Integer current, Integer pageSize, Long hospId, String date);
  43. }