| | |
| | | @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); |
| | | } |
| | | @GetMapping("/uuPush") |
| | | public R uuPush(@RequestParam("phone")String phone,@RequestParam("orderStatus")Integer orderStatus){ |
| | | return userService.uuPush(phone,orderStatus); |
| | | } |
| | | } |