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 { List> queryAllProvince(); List> queryAllCity(String pId); List> queryAllArea(String cId); List> queryApiArea(@Param("townModel") List townModel); String queryAreaCityList(String city); String queryAreaTownList(String city); String queryCityNameById(String cityId); String queryCityByCityId(@Param("id") String id); }