12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- package com.kcim.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.kcim.common.util.PageUtils;
- import com.kcim.dao.model.HospProfitAndLoss;
- /**
- * 全院损益表
- *
- * @author huangrui
- * @email
- * @date 2021-08-27 14:20:53
- */
- public interface HospProfitAndLossService extends IService<HospProfitAndLoss> {
- /**
- * 计算全院损益
- *
- * @param date yyyy-MM-dd 时间
- * @param hospId 医院id
- */
- void calc(String date, Long hospId);
- /**
- * 全院损益列表
- *
- * @param current 当前页
- * @param pageSize 每页展示数据大小
- * @param date 日期
- * @param hospId 医院id
- * @return PageUtils
- */
- PageUtils getHospProfits(Integer current, Integer pageSize, String date, Long hospId);
- /**
- * 导出全院损益计算
- * @param date yyyy-MM-dd
- * @param hospId
- */
- void hospProfitReport(String date, Long hospId) ;
- /**
- *
- * @param date
- * @param hospId
- */
- void calcByResponsibility(String date, Long hospId);
- PageUtils hospProfitReports(Integer current, Integer pageSize, Long hospId, String date);
- }
|