| | |
| | | @PostMapping("/tfLogin") |
| | | R tfLogin(@RequestBody UuLoginVO uuLoginVO); |
| | | |
| | | /** |
| | | * 三说会堂添加后台账户 |
| | | * */ |
| | | @PostMapping("/sanshuoAddUser") |
| | | R sanShuoAddUser(@RequestBody AdministratorsUserVO administratorsUserVO); |
| | | |
| | | /** |
| | | * 三说会堂重置密码 |
| | | * */ |
| | | @GetMapping("/sanshuoResetPassword") |
| | | R sanShuoResetPassword(@RequestParam("account") String account,@RequestParam("pass")String password); |
| | | |
| | | |
| | | @GetMapping("/accept") |
| | | R accept(@RequestParam("userId")Long userId); |
| | |
| | | @PostMapping("/addComPbCheckUser") |
| | | R addComPbCheckUser(@RequestBody ComPbCheckUserDTO comPbCheckUserDTO); |
| | | |
| | | |
| | | /** |
| | | * 是否为专家登陆小程序 |
| | | * */ |
| | | @GetMapping("/isSanShuoExpert") |
| | | R isExpert(@RequestParam("number") String number); |
| | | |
| | | /** |
| | | * 删除用户专家权限 |
| | | * */ |
| | | @GetMapping("/removeExpertRole") |
| | | R removeExpertRole(@RequestParam(value = "phone",required = false) String phone); |
| | | |
| | | /** |
| | | *回复反馈意见或修改返回意见的回复 |
| | | * */ |
| | | @PostMapping("/feedBackReply") |
| | | R updateFeedBack(@RequestBody SysUserFeedbackVO sysUserFeedbackVO); |
| | | |
| | | @GetMapping("/myFeedBack") |
| | | R myFeedBack(@RequestParam("userId") Long userId,@RequestParam(value = "type",required = false)Integer type,@RequestParam("propertyId")Long propertyId); |
| | | |
| | | /** |
| | | * 获取所有社区等 |
| | | * @return |
| | | */ |
| | | @GetMapping("/getAllCommunityList") |
| | | R getAllCommunityList(); |
| | | |
| | | @GetMapping("/propertyCheck") |
| | | R propertyCheck(@RequestParam("phone") String phone); |
| | | |
| | | } |