| | |
| | | */ |
| | | @GetMapping("/uuPush") |
| | | R uuPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus); |
| | | |
| | | /** |
| | | * 无水洗车推送 |
| | | * @param washPhone |
| | | * @param phone |
| | | * @param washName |
| | | * @param orderStatus |
| | | * @return |
| | | */ |
| | | @GetMapping("/wsPush") |
| | | R wsPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus); |
| | | @GetMapping("/communityList") |
| | | R communityList(@RequestParam("name") String name, @RequestParam("id") Long id); |
| | | |
| | |
| | | * */ |
| | | @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); |
| | | } |