DepartmentProfitFileService.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. package com.imed.costaccount.service;
  2. import com.baomidou.mybatisplus.extension.service.IService;
  3. import com.imed.costaccount.common.util.PageUtils;
  4. import com.imed.costaccount.model.DepartmentProfitFile;
  5. import java.util.List;
  6. /**
  7. * 科室经营报表
  8. *
  9. * @author huangrui
  10. * @email
  11. * @date 2021-08-30 13:40:57
  12. */
  13. public interface DepartmentProfitFileService extends IService<DepartmentProfitFile> {
  14. /**
  15. * 分页查询进行报表记录
  16. * @param current 当前页
  17. * @param pageSize 每一页大小
  18. * @param date 时间xxx-xx-xx
  19. * @param reportName 报表名称
  20. * @param hospId 医院Id
  21. * @return
  22. */
  23. PageUtils queryList(Integer current, Integer pageSize, String date, String reportName, Long hospId);
  24. /**
  25. * 添加科室损益记录
  26. * @param date 时间
  27. * @param reportType 报表类型
  28. * @param hospId 医院ID
  29. */
  30. void addDepartmentProfitFile(String date, Integer reportType, Long hospId);
  31. /**
  32. * 批量删除科室损益数据
  33. * @param idList 科室损益的Id的集合
  34. */
  35. void deleteByIds(List<Long> idList);
  36. }