1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| package org.dromara.demo.mapper;
|
| import org.dromara.demo.domain.RsGeographyData;
| import org.dromara.demo.domain.vo.RsGeographyDataVo;
| import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
|
| /**
| * 数据上图Mapper接口
| *
| * @author gonghl
| * @date 2024-03-07
| */
| public interface RsGeographyDataMapper extends BaseMapperPlus<RsGeographyData, RsGeographyDataVo> {
|
| }
|
|