| | |
| | | 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; |
| | | import com.doumee.core.annotation.trace.Trace; |
| | | import com.doumee.core.constants.Constants; |
| | | import com.doumee.core.model.ApiResponse; |
| | |
| | | @Autowired |
| | | private SystemDictDataBiz systemDictDataBiz; |
| | | |
| | | @PreventRepeat |
| | | @LoginRequired |
| | | @ApiOperation(value = "押金支付", notes = "小程序端") |
| | | @GetMapping("/createGoodsOrderPay") |
| | |
| | | } |
| | | |
| | | |
| | | @PreventRepeat |
| | | @LoginRequired |
| | | @ApiOperation(value = "扫码解锁", notes = "小程序端") |
| | | @GetMapping("/openLock") |
| | |
| | | |
| | | |
| | | @LoginRequired |
| | | @PreventRepeat |
| | | @ApiOperation(value = "订单结算", notes = "小程序端") |
| | | @GetMapping("/goodsOrderSettlement") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "header", dataType = "String", name = "token", value = "用户token值", required = true), |
| | | @ApiImplicitParam(paramType = "query", dataType = "String", name = "orderId", value = "订单主键", required = true) |
| | | }) |
| | | public ApiResponse goodsOrderSettlement(@RequestParam String orderId) { |
| | | goodsorderService.goodsOrderSettlement(orderId); |
| | | public ApiResponse goodsOrderSettlement() { |
| | | goodsorderService.goodsOrderSettlement(getMemberId()); |
| | | return ApiResponse.success("操作成功"); |
| | | } |
| | | |