CostDepartmentProfitMapper.java 541 B

123456789101112131415161718192021
  1. package com.kcim.dao.mapper;
  2. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  3. import com.kcim.dao.model.CostDepartmentProfit;
  4. import org.apache.ibatis.annotations.Mapper;
  5. import org.apache.ibatis.annotations.Param;
  6. /**
  7. * 科室损益计算
  8. *
  9. * @author KCYG
  10. * @date 2021-08-24 16:24:08
  11. */
  12. @Mapper
  13. public interface CostDepartmentProfitMapper extends BaseMapper<CostDepartmentProfit> {
  14. Integer getMaxYear(@Param("hospId") Long hospId);
  15. Integer getMaxMonth(@Param("hospId") Long hospId, @Param("year") Integer year);
  16. }