1234567891011121314151617181920212223242526272829303132333435 |
- package com.imed.costaccount.service;
- import com.baomidou.mybatisplus.extension.service.IService;
- import com.imed.costaccount.common.util.PageUtils;
- import com.imed.costaccount.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);
- }
|