zhaozhengjie
2022-09-20 d698714e61e1b322ef12d65a52089ceff8a63703
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/BcRegionApi.java
@@ -43,7 +43,12 @@
        return this.bcRegionService.pageList(province,city,country,town);
    }
    @GetMapping("levelList")
    public R levelList(){
        return this.bcRegionService.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();
    }
}