1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package com.ltkj.hosp.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ltkj.hosp.domain.TjCompPayInfo;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * 体检单位缴费明细Mapper接口
| *
| * @author ltkj
| * @date 2023-03-14
| */
| @Mapper
| public interface TjCompPayInfoMapper extends BaseMapper<TjCompPayInfo> {
| }
|
|