ComputeClinicalPathwayCostService.java 689 B

12345678910111213141516171819202122232425
  1. package com.kcim.service;
  2. /**
  3. * @program: CostAccount
  4. * @description: 临床路径成本计算接口
  5. * @author: Wang.YS
  6. * @create: 2023-10-31 17:12
  7. **/
  8. public interface ComputeClinicalPathwayCostService {
  9. /**
  10. * 临床路径分而查询
  11. * @param current 当前页
  12. * @param pageSize 页容量
  13. * @param computeDate 核算年月
  14. * @param clinicalName 路径名称
  15. * @return 列表
  16. */
  17. Object clinicalPathwayCostCalculateList(Integer current, Integer pageSize, String computeDate, String clinicalName);
  18. /**
  19. * 临床路径计算
  20. * @param computeDate 核算年月
  21. */
  22. void clinicalPathwayCostCalculate(String computeDate);
  23. }