From bdbe40f077aa9ca2ec184707d3eab41af13def03 Mon Sep 17 00:00:00 2001 From: lidongdong <1459917685@qq.com> Date: 星期四, 10 十一月 2022 18:12:54 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/zigonggao_dev' into zigonggao_dev --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java index 62ec37d..1fb80be 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/api/UserApi.java @@ -1457,6 +1457,11 @@ return userService.getCommunityList(name,id); } + @GetMapping("/getAllCommunityList") + public R getAllCommunityList(){ + return userService.getAllCommunityList(); + } + @GetMapping("/resetPasswordAccount") public R resetPasswordAccount(@RequestParam("type")Integer type,@RequestParam("account")String account,@RequestParam("appId")String appId){ return userService.resetPassword(type,account,appId); @@ -1502,5 +1507,19 @@ return userService.addComPbCheckUser(comPbCheckUserDTO); } + @PostMapping("/feedBackReply") + public R feedBackReply(@RequestBody SysUserFeedbackVO sysUserFeedbackVO){ + return userService.feedBackReply(sysUserFeedbackVO); + } + + @GetMapping("/myFeedBack") + public R myFeedBack(@RequestParam("userId")Long id,@RequestParam(value = "type",required = false)Integer type){ + return userService.myFeedBack(id,type); + } + + @GetMapping("/propertyCheck") + public R propertyCheck(@RequestParam String phone){ + return userService.propertyCheck(phone); + } } -- Gitblit v1.7.1