ReportPatientCostMapper.java 352 B

12345678910111213141516
  1. package com.kcim.dao.mapper;
  2. import com.kcim.dao.model.ReportPatientCost;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * 病人成本报表
  7. *
  8. * @author Wang.YS
  9. * @date 2023-10-17 15:35:58
  10. */
  11. @Mapper
  12. public interface ReportPatientCostMapper extends BaseMapper<ReportPatientCost> {
  13. }