| | |
| | | package com.doumee.api.web; |
| | | |
| | | //import com.doumee.api.Repeat.RepeatSubmit; |
| | | import com.doumee.biz.system.SystemDictDataBiz; |
| | | import com.doumee.core.annotation.LoginRequired; |
| | | import com.doumee.core.annotation.pr.PreventRepeat; |
| | |
| | | @Autowired |
| | | private SystemDictDataBiz systemDictDataBiz; |
| | | |
| | | @PreventRepeat |
| | | @LoginRequired |
| | | @ApiOperation(value = "押金支付", notes = "小程序端") |
| | | @GetMapping("/createGoodsOrderPay") |
| | |
| | | public ApiResponse<Object> createGoodsOrderPay() { |
| | | return ApiResponse.success("操作成功",goodsorderService.createGoodsOrderPay(getMemberId())); |
| | | } |
| | | |
| | | |
| | | @LoginRequired |
| | | @ApiOperation(value = "骑行明细", notes = "小程序端") |
| | |
| | | public ApiResponse<RidesDetailResponse> ridesDetail(@RequestParam String goodsOrderId) { |
| | | return ApiResponse.success("查询成功",goodsorderService.getRidesDetailResponse(goodsOrderId)); |
| | | } |
| | | |
| | | |
| | | |
| | | @LoginRequired |
| | | @ApiOperation(value = "租车点列表", notes = "小程序端") |
| | |
| | | rentSite.setStatus(Constants.ZERO); |
| | | return ApiResponse.success("查询成功",rentSiteService.findList(rentSite)); |
| | | } |
| | | |
| | | |
| | | @LoginRequired |
| | | @ApiOperation("消费明细") |
| | |
| | | return ApiResponse.success("操作成功"); |
| | | } |
| | | |
| | | |
| | | @PreventRepeat |
| | | @LoginRequired |
| | | @ApiOperation(value = "扫码解锁", notes = "小程序端") |
| | | @GetMapping("/openLock") |
| | |
| | | return ApiResponse.success("操作成功",memberRidesService.openLock(code,getMemberId())); |
| | | } |
| | | |
| | | |
| | | @LoginRequired |
| | | @ApiOperation(value = "刷新解锁情况", notes = "小程序端") |
| | | @GetMapping("/refreshLock") |
| | |
| | | public ApiResponse<MemberRidesDetailResponse> refreshLock(@RequestParam String id) { |
| | | return ApiResponse.success("操作成功",memberRidesService.refreshLock(id)); |
| | | } |
| | | |
| | | |
| | | @LoginRequired |
| | | @PreventRepeat |