张天森
2022-10-08 86c38d586645e8ed14c32e1a69faf5540a27ff61
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/api/ComSanShuoExpertApi.java
@@ -58,7 +58,7 @@
     * 小程序获取可选择专家
     * */
    @GetMapping("/appletsList")
    public R appList(@RequestParam ("type")Integer type,@RequestParam("id")Long id){
    public R appList(@RequestParam (value = "type",required = false)Integer type,@RequestParam(value = "id",required = false)Long id){
        return comSanShuoExpertService.selectExpertList(type, id,this.getLoginUserInfo().getCommunityId());
    }
@@ -72,6 +72,7 @@
        expert.setUpdateTime(new Date());
        return R.ok(comSanShuoExpertService.updateById(expert));
    }
    /**
     * 后台获取列表
@@ -125,6 +126,9 @@
    }
    /**
     * 专家范围
     * */
@@ -155,4 +159,7 @@
        return R.fail();
    }
}