| | |
| | | return userService.uuLogin(uuLoginVO); |
| | | } |
| | | |
| | | @PostMapping("/indexData") |
| | | @GetMapping("/indexData") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "type",value = "数据范围,1:所有区县,2:所有街道,3:所有社区,4:跟据街道筛选",dataType = "Integer"), |
| | | @ApiImplicitParam(name = "streetId",value = "街道ID",dataType = "Long") |
| | |
| | | @RequestParam(value = "type",required = false) Long streetId){ |
| | | return userService.newIndexData(type,streetId); |
| | | } |
| | | |
| | | /** |
| | | *导出验证密码 |
| | | */ |
| | | @GetMapping("/checkExport") |
| | | public R checkExport(@RequestParam("account")String account,@RequestParam("password")String password,@RequestParam("oldPassword")String oldPassword){ |
| | | return userService.checkExport(account,password,oldPassword); |
| | | } |
| | | |
| | | /** |
| | | * uu洗车推送 |
| | | * @param washPhone |
| | | * @param phone |
| | | * @param washName |
| | | * @param orderStatus |
| | | * @return |
| | | */ |
| | | @GetMapping("/uuPush") |
| | | public R uuPush(@RequestParam("washPhone")String washPhone,@RequestParam("phone")String phone,@RequestParam("washName")String washName,@RequestParam("orderStatus")Integer orderStatus){ |
| | | return userService.uuPush(washPhone,phone,washName,orderStatus); |
| | | } |
| | | } |