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);
|
|
|
|
}
|