51 lines
1.4 KiB
Java
51 lines
1.4 KiB
Java
|
|
package com.ai.da.controller;
|
||
|
|
|
||
|
|
import com.ai.da.common.enums.OrderStatusEnum;
|
||
|
|
import com.ai.da.common.response.Response;
|
||
|
|
import com.ai.da.mapper.entity.OrderInfo;
|
||
|
|
import com.ai.da.service.OrderInfoService;
|
||
|
|
import io.swagger.annotations.Api;
|
||
|
|
import io.swagger.annotations.ApiOperation;
|
||
|
|
import org.springframework.web.bind.annotation.*;
|
||
|
|
|
||
|
|
import javax.annotation.Resource;
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
@CrossOrigin //开放前端的跨域访问
|
||
|
|
@Api(tags = "商品订单管理")
|
||
|
|
@RestController
|
||
|
|
@RequestMapping("/api/order-info")
|
||
|
|
public class OrderInfoController {
|
||
|
|
|
||
|
|
@Resource
|
||
|
|
private OrderInfoService orderInfoService;
|
||
|
|
|
||
|
|
@ApiOperation("订单列表")
|
||
|
|
@GetMapping("/list")
|
||
|
|
public Response<List<OrderInfo>> list(){
|
||
|
|
|
||
|
|
List<OrderInfo> list = orderInfoService.listOrderByCreateTimeDesc();
|
||
|
|
return Response.success(list);
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 查询本地订单状态
|
||
|
|
* @param orderNo
|
||
|
|
* @return
|
||
|
|
*/
|
||
|
|
@ApiOperation("查询本地订单状态")
|
||
|
|
@GetMapping("/query-order-status/{orderNo}")
|
||
|
|
public Response<String> queryOrderStatus(@PathVariable String orderNo){
|
||
|
|
|
||
|
|
String orderStatus = orderInfoService.getOrderStatus(orderNo);
|
||
|
|
if(OrderStatusEnum.SUCCESS.getType().equals(orderStatus)){
|
||
|
|
return Response.success("支付成功"); //支付成功
|
||
|
|
}
|
||
|
|
|
||
|
|
return Response.success(101,"支付中......");
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|