lidongdong
2024-04-01 04dae3bb19b0c5d3423b23772e3390d2555f4d63
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java
@@ -258,6 +258,7 @@
    @PostMapping("detailuser")
    public R<LoginUserInfoVO> detailUser(@RequestParam("userId") Long userId) {
        return userService.detailUser(userId);
//        return userService.getUserInfo(userId+"");
    }
    /**
@@ -1513,8 +1514,8 @@
    }
    @GetMapping("/myFeedBack")
    public R myFeedBack(@RequestParam("userId")Long id,@RequestParam(value = "type",required = false)Integer type){
        return userService.myFeedBack(id,type);
    public R myFeedBack(@RequestParam("userId")Long id,@RequestParam(value = "type",required = false)Integer type,@RequestParam("propertyId")Long propertyId){
        return userService.myFeedBack(id,type,propertyId);
    }
    @GetMapping("/propertyCheck")