xiaoyong931011
2021-07-16 4f60ffbbc73de024fd11146a7c73698044b2504b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package com.xzx.gc.user.mapper;
 
import com.xzx.gc.entity.AddressLevelInfo;
import com.xzx.gc.util.GcMapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
public interface AddressLevelMapper extends GcMapper<AddressLevelInfo> {
 
    List<Map<String, Object>> queryAllProvince();
    List<Map<String, Object>> queryAllCity(String pId);
    List<Map<String, Object>> queryAllArea(String cId);
 
    List<Map<String, Object>> queryApiArea(@Param("townModel") List<String> townModel);
 
    String queryAreaCityList(String city);
 
    String queryAreaTownList(String city);
 
    String queryCityNameById(String cityId);
 
    String queryCityByCityId(@Param("id") String id);
 
 
 
}