1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.sinata.shop.modular.system.service;
|
| import com.baomidou.mybatisplus.service.IService;
| import com.sinata.shop.modular.system.model.TCityRegion;
|
| import java.util.List;
|
| /**
| * <p>
| * 省市区三级联动 服务类
| * </p>
| *
| * @author goku
| * @since 2023-03-27
| */
| public interface ITCityRegionService extends IService<TCityRegion> {
|
| List<TCityRegion> getProvinceCityCountyNameByAll(List<TCityRegion> cityAll, String countyCode);
|
| List<TCityRegion> getCityNameCodeAll();
|
| }
|
|