| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.sangeshenbian.model.entity.SystemUser; |
| | | import com.panzhihua.sangeshenbian.model.vo.RegionVO; |
| | | import com.panzhihua.sangeshenbian.warpper.SystemUserList; |
| | | import com.panzhihua.sangeshenbian.warpper.SystemUserListVo; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | |
| | | * @param pcode |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getRegion(@Param("pcode") String pcode); |
| | | List<RegionVO> getRegion(@Param("pcode") String pcode); |
| | | |
| | | /** |
| | | * 获取街道数据 |
| | | * @param areaCode |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getStreet(@Param("areaCode") String areaCode); |
| | | List<RegionVO> getStreet(@Param("areaCode") String areaCode); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param streetId |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getCommunity(@Param("streetId") String streetId); |
| | | List<RegionVO> getCommunity(@Param("streetId") String streetId); |
| | | } |