1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| package com.se.simu.mapper;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.se.simu.domain.po.SimuPo;
| import org.apache.ibatis.annotations.Mapper;
| import org.springframework.stereotype.Repository;
|
| /**
| * 仿真Mapper
| *
| * @author WWW
| * @date 2024-09-18
| */
| @Mapper
| @Repository
| public interface SimuMapper extends BaseMapper<SimuPo> {
| /**
| * 查询最大ID
| *
| * @return 最大ID
| */
| Integer selectMaxId();
| }
|
|