- package com.kcim.dao.mapper;
- import com.kcim.dao.model.ReportPatientCost;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * 病人成本报表
- *
- * @author Wang.YS
- * @date 2023-10-17 15:35:58
- */
- @Mapper
- public interface ReportPatientCostMapper extends BaseMapper<ReportPatientCost> {
-
- }
|