1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ltkj.hosp.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.ltkj.hosp.domain.TjSummary;
| import org.apache.ibatis.annotations.Mapper;
|
| /**
| * @Company: 西安路泰科技有限公司
| * @Author: zjh
| * @Date: 2023/10/16 08:59
| */
| @Mapper
| public interface TjSummaryMapper extends BaseMapper<TjSummary> {
| }
|
|