张天森
2022-10-09 c6e9ccc99a191d61b9599629702f84f495516095
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java
@@ -44,8 +44,6 @@
    private UserService userService;
    @Resource
    private SysUserInputService sysUserInputService;
    @Resource
    private CommunityService communityService;
    /**
     * 新增微信用户
@@ -1471,10 +1469,12 @@
    }
    /**
     * 是否为专家登陆小程序
     * */
    @GetMapping("/isSanShuoExpert")
    public R isExpert(@RequestParam("number") String number){
        return communityService.isExpert(number);
     * 移除账号专家权限
     *
     */
    @GetMapping("/removeExpertRole")
    public R removeExpertRole(@RequestParam(value = "phone",required = false)String phone){
        return userService.removeExpertRole(phone);
    }
}