| | |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2025/2/18 22:29 |
| | |
| | | * @return |
| | | */ |
| | | IPage<SystemUserListVo> list(Page page, @Param("accountLevel") Integer accountLevel, @Param("query") SystemUserList query); |
| | | |
| | | |
| | | /** |
| | | * 获取行政区划数据 |
| | | * @param pcode |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getRegion(@Param("pcode") String pcode); |
| | | |
| | | /** |
| | | * 获取街道数据 |
| | | * @param areaCode |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getStreet(@Param("areaCode") String areaCode); |
| | | |
| | | |
| | | /** |
| | | * 获取社区数据 |
| | | * @param streetId |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getCommunity(@Param("streetId") String streetId); |
| | | } |