| | |
| | | * @return 协议内容 |
| | | */ |
| | | @PostMapping("useragreement") |
| | | public R userAgreement(@RequestParam("type") int type) { |
| | | return userService.userAgreement(type); |
| | | public R userAgreement(@RequestParam("type") int type,@RequestParam("appid")String appId) { |
| | | return userService.userAgreement(type,appId); |
| | | } |
| | | |
| | | /** |
| | |
| | | return userService.checkExport(account,password,oldPassword); |
| | | } |
| | | |
| | | /** |
| | | * uu洗车推送 |
| | | * @param washPhone |
| | | * @param phone |
| | | * @param washName |
| | | * @param orderStatus |
| | | * @return |
| | | */ |
| | | @GetMapping("/uuPush") |
| | | public R uuPush(@RequestParam(value = "washPhone",required = false)String washPhone,@RequestParam("phone")String phone,@RequestParam(value = "washName",required = false)String washName,@RequestParam("orderStatus")Integer orderStatus){ |
| | | return userService.uuPush(washPhone,phone,washName,orderStatus); |
| | | } |
| | | |
| | | @GetMapping("/indexData/getAreaAndStreet") |
| | | public R getAreaAndStreet(){ |
| | | return userService.getAreaAndStreet(); |