1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.mzl.flower.mapper.district;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.mzl.flower.entity.district.DistrictDO;
| import com.mzl.flower.entity.district.DistrictTengxunDO;
|
| /**
| * <p>
| * 对接高德地图行政区划 Mapper 接口
| * </p>
| *
| * @author @TaoJie
| * @since 2024-12-19
| */
| public interface DistrictTengxunMapperCustom extends BaseMapper<DistrictTengxunDO> {
|
| void removeAllDistricts();
|
| }
|
|