58 lines
1.7 KiB
Java
58 lines
1.7 KiB
Java
package com.sky.controller.user;
|
|
|
|
import com.sky.dto.OrdersPaymentDTO;
|
|
import com.sky.dto.OrdersSubmitDTO;
|
|
import com.sky.result.PageResult;
|
|
import com.sky.result.Result;
|
|
import com.sky.service.OrderService;
|
|
import com.sky.vo.OrderPaymentVO;
|
|
import com.sky.vo.OrderSubmitVO;
|
|
import com.sky.vo.OrderVO;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import lombok.extern.slf4j.Slf4j;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
/**
|
|
* 订单
|
|
*/
|
|
@RestController("userOrderController")
|
|
@RequestMapping("/user/order")
|
|
@Slf4j
|
|
@Api(tags = "C端订单接口")
|
|
public class OrderController {
|
|
|
|
@Autowired
|
|
private OrderService orderService;
|
|
|
|
/**
|
|
* 用户下单
|
|
*
|
|
* @param ordersSubmitDTO
|
|
* @return
|
|
*/
|
|
@PostMapping("/submit")
|
|
@ApiOperation("用户下单")
|
|
public Result<OrderSubmitVO> submit(@RequestBody OrdersSubmitDTO ordersSubmitDTO) {
|
|
log.info("用户下单:{}", ordersSubmitDTO);
|
|
OrderSubmitVO orderSubmitVO = orderService.submitOrder(ordersSubmitDTO);
|
|
return Result.success(orderSubmitVO);
|
|
}
|
|
|
|
/**
|
|
* 订单支付
|
|
*
|
|
* @param ordersPaymentDTO
|
|
* @return
|
|
*/
|
|
@PutMapping("/payment")
|
|
@ApiOperation("订单支付")
|
|
public Result<OrderPaymentVO> payment(@RequestBody OrdersPaymentDTO ordersPaymentDTO) throws Exception {
|
|
log.info("订单支付:{}", ordersPaymentDTO);
|
|
OrderPaymentVO orderPaymentVO = orderService.payment(ordersPaymentDTO);
|
|
log.info("生成预支付交易单:{}", orderPaymentVO);
|
|
return Result.success(orderPaymentVO);
|
|
}
|
|
}
|