manailin
2022-09-14 29167f6c5d895749f369fadbcd4b3c0a3a17052c
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/service/community/CommunityService.java
@@ -10379,7 +10379,7 @@
     * 删除业务中心
     * */
    @DeleteMapping("/sanshuo/industryCenter/remove")
    R removeIndustry(@RequestParam Long id);
    R removeIndustry(@RequestParam("id") Long id);
    /**
     * 重置业务中心密码
@@ -10391,7 +10391,7 @@
     * 业务中心详情
     * */
    @GetMapping("/sanshuo/industryCenter/detail")
    R industryCenterDetail(@RequestParam Long id);
    R industryCenterDetail(@RequestParam("id") Long id);
    /**
     * 后台获取专家列表
@@ -10435,7 +10435,7 @@
     * 获取专家详情
     * */
    @GetMapping("/sanshuo/expert/detail")
    R expertDetail(@RequestParam Long id);
    R expertDetail(@RequestParam("id") Long id);
    /**
     * 后台事件列表
@@ -10480,4 +10480,8 @@
     * */
    @GetMapping("/sanshuo/expert/expertShow")
    R expertShow();
    @GetMapping("/sanshuo/expert/expertRange")
    R expertRange();
}