lidongdong
2024-07-15 ed9e98f6b71bf662c045fd8e24d6ac254f624051
springcloud_k8s_panzhihuazhihuishequ/applets/src/main/java/com/panzhihua/applets/api/UserApi.java
@@ -498,6 +498,21 @@
        return R.ok();
    }
    /**
     * 获取动作人员详情
     * @param communityId
     * @param phone
     * @return
     */
    @ApiOperation(value = "社区工做人员详情")
    @GetMapping("/getComPbServiceTeamData")
    public R getComPbServiceTeamData(@RequestParam("communityId") String communityId,
                                     @RequestParam("phone") String phone)
    {
        return partyBuildingService.getComPbServiceTeamData(communityId,phone);
    }
    @ApiOperation(value = "获取用户电子档案", response = UserArchivesVO.class)
    @PostMapping("getUserArchives")
    public R getUserArchives() {
@@ -535,13 +550,14 @@
    @ApiOperation("新增投诉建议或问题留言")
    @PostMapping("addFeedBack")
    public R addFeedBack(@RequestBody SysUserFeedbackDTO sysUserFeedbackDTO){
        sysUserFeedbackDTO.setCommunityId(null);
        return userService.addFeedback(sysUserFeedbackDTO);
    }
    @ApiOperation("查看自己的投诉建议或问题留言记录")
    @GetMapping("myFeedBack")
    public R myFeedBack(@ApiParam("类型:1问题留言2投诉建议") @RequestParam(value = "type",required = false)Integer type){
        return userService.myFeedBack(this.getLoginUserInfo().getUserId(),type);
    public R myFeedBack(@ApiParam("类型:1问题留言2投诉建议") @RequestParam(value = "type",required = false)Integer type,@RequestParam("propertyId")Long propertyId){
        return userService.myFeedBack(this.getLoginUserInfo().getUserId(),type,propertyId);
    }
}