12345678910111213141516171819202122232425 |
- package com.kcim.service;
- /**
- * @program: CostAccount
- * @description: 临床路径成本计算接口
- * @author: Wang.YS
- * @create: 2023-10-31 17:12
- **/
- public interface ComputeClinicalPathwayCostService {
- /**
- * 临床路径分而查询
- * @param current 当前页
- * @param pageSize 页容量
- * @param computeDate 核算年月
- * @param clinicalName 路径名称
- * @return 列表
- */
- Object clinicalPathwayCostCalculateList(Integer current, Integer pageSize, String computeDate, String clinicalName);
- /**
- * 临床路径计算
- * @param computeDate 核算年月
- */
- void clinicalPathwayCostCalculate(String computeDate);
- }
|