yanghui
2022-10-27 28e8b38e9de8cc76084d0af6a96d2d9d1e1f739f
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BcRegionApi.java
@@ -42,4 +42,13 @@
    public R selectAll(@RequestParam("province") String province, @RequestParam("city") String city, @RequestParam("county")String country,@RequestParam("town")String town) {
        return this.bcRegionService.pageList(province,city,country,town);
    }
    @GetMapping("levelList")
    public R levelList(@RequestParam("level")Integer level,@RequestParam("code")String code){
        return this.bcRegionService.levelList(level,code);
    }
    @GetMapping("levelListBackstage")
    public R levelListBackstage(){
        return this.bcRegionService.levelListBackstage();
    }
}