lidongdong
2024-07-30 e538cdf006a72d0f3cb8dd22d450ad5db77090fd
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java
@@ -807,11 +807,10 @@
     */
    @PostMapping("detailusercomunity")
    public R detailUserComunity(@RequestParam("userId") Long userId) {
        CommunityUserInfoVO communityUserInfoVO = new CommunityUserInfoVO();
        if (userId < 100000000l) {
        CommunityUserInfoVO communityUserInfoVO;
        communityUserInfoVO = sysUserInputService.detailUserComunity(userId);
        if (communityUserInfoVO==null) {
            communityUserInfoVO = userService.detailUserComunity(userId);
        } else {
            communityUserInfoVO = sysUserInputService.detailUserComunity(userId);
        }
        return R.ok(communityUserInfoVO);
    }