HospProfitAndLossMapper.java 737 B

123456789101112131415161718192021222324
  1. package com.imed.costaccount.mapper;
  2. import com.imed.costaccount.model.HospProfitAndLoss;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. /**
  8. * 全院损益表
  9. *
  10. * @author huangrui
  11. * @date 2021-08-27 14:20:53
  12. */
  13. @Mapper
  14. public interface HospProfitAndLossMapper extends BaseMapper<HospProfitAndLoss> {
  15. List<HospProfitAndLoss> getPageList(@Param("startIndex") int startIndex, @Param("pageSize") Integer pageSize, @Param("year") int year, @Param("month") int month, @Param("hospId") Long hospId);
  16. int getPageCount(@Param("year") int year, @Param("month") int month, @Param("hospId") Long hospId);
  17. }