lidongdong
2024-07-30 8bdfb8dc514575d85bdc539b11a08a4ca431d8f1
花城 修改小程序微信用户管理报错2
1个文件已修改
5 ■■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java
@@ -808,10 +808,9 @@
    @PostMapping("detailusercomunity")
    public R detailUserComunity(@RequestParam("userId") Long userId) {
        CommunityUserInfoVO communityUserInfoVO = new CommunityUserInfoVO();
        if (userId < 100000000l) {
        communityUserInfoVO = sysUserInputService.detailUserComunity(userId);
        if (communityUserInfoVO==null) {
            communityUserInfoVO = userService.detailUserComunity(userId);
        } else {
            communityUserInfoVO = sysUserInputService.detailUserComunity(userId);
        }
        return R.ok(communityUserInfoVO);
    }