58 lines
1.7 KiB
Java
Raw Normal View History

2024-04-23 12:23:43 +08:00
package com.sky.controller.user;
2024-08-07 14:11:29 +08:00
import com.sky.dto.OrdersPaymentDTO;
2024-04-23 12:23:43 +08:00
import com.sky.dto.OrdersSubmitDTO;
2024-08-13 09:29:47 +08:00
import com.sky.result.PageResult;
2024-04-23 12:23:43 +08:00
import com.sky.result.Result;
import com.sky.service.OrderService;
2024-08-07 14:11:29 +08:00
import com.sky.vo.OrderPaymentVO;
2024-04-23 12:23:43 +08:00
import com.sky.vo.OrderSubmitVO;
2024-08-13 09:29:47 +08:00
import com.sky.vo.OrderVO;
2024-04-23 12:23:43 +08:00
import io.swagger.annotations.Api;
2024-08-07 14:11:29 +08:00
import io.swagger.annotations.ApiOperation;
2024-04-23 12:23:43 +08:00
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
2024-08-07 14:11:29 +08:00
import org.springframework.web.bind.annotation.*;
2024-04-23 12:23:43 +08:00
2025-04-24 18:59:44 +08:00
/**
* 订单
*/
@RestController("userOrderController")
2024-04-23 12:23:43 +08:00
@RequestMapping("/user/order")
2025-04-24 18:59:44 +08:00
@Slf4j
@Api(tags = "C端订单接口")
2024-04-23 12:23:43 +08:00
public class OrderController {
2025-04-24 18:59:44 +08:00
2024-04-23 12:23:43 +08:00
@Autowired
private OrderService orderService;
2025-04-24 18:59:44 +08:00
/**
* 用户下单
*
* @param ordersSubmitDTO
* @return
*/
2024-04-23 12:23:43 +08:00
@PostMapping("/submit")
2025-04-24 18:59:44 +08:00
@ApiOperation("用户下单")
public Result<OrderSubmitVO> submit(@RequestBody OrdersSubmitDTO ordersSubmitDTO) {
log.info("用户下单:{}", ordersSubmitDTO);
OrderSubmitVO orderSubmitVO = orderService.submitOrder(ordersSubmitDTO);
2024-04-23 12:23:43 +08:00
return Result.success(orderSubmitVO);
}
2025-04-24 18:59:44 +08:00
2024-08-07 14:11:29 +08:00
/**
* 订单支付
*
* @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);
}
2024-04-23 12:23:43 +08:00
}