苍穹外卖--用户端&管理端--订单管理业务操作的全部代码实现
This commit is contained in:
@@ -3,17 +3,19 @@ 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
|
||||
@RestController("userOrderController")
|
||||
@Slf4j
|
||||
@RequestMapping("/user/order")
|
||||
@Api(tags = "用户端订单相关的接口")
|
||||
@@ -48,4 +50,58 @@ public class OrderController {
|
||||
return Result.success(orderPaymentVO);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 历史订单查询
|
||||
*
|
||||
* @param page
|
||||
* @param pageSize
|
||||
* @param status 订单状态 1待付款 2待接单 3已接单 4派送中 5已完成 6已取消
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/historyOrders")
|
||||
@ApiOperation("历史订单查询")
|
||||
public Result<PageResult> page(int page, int pageSize, Integer status) {
|
||||
PageResult pageResult = orderService.pageQuery4User(page, pageSize, status);
|
||||
return Result.success(pageResult);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询订单详情
|
||||
*
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
@GetMapping("/orderDetail/{id}")
|
||||
@ApiOperation("查询订单详情")
|
||||
public Result<OrderVO> details(@PathVariable("id") Long id) {
|
||||
OrderVO orderVO = orderService.details(id);
|
||||
return Result.success(orderVO);
|
||||
}
|
||||
|
||||
/**
|
||||
* 用户取消订单
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
@PutMapping("/cancel/{id}")
|
||||
@ApiOperation("取消订单")
|
||||
public Result cancel(@PathVariable("id") Long id) throws Exception {
|
||||
orderService.userCancelById(id);
|
||||
return Result.success();
|
||||
}
|
||||
|
||||
/**
|
||||
* 再来一单
|
||||
*
|
||||
* @param id
|
||||
* @return
|
||||
*/
|
||||
@PostMapping("/repetition/{id}")
|
||||
@ApiOperation("再来一单")
|
||||
public Result repetition(@PathVariable Long id) {
|
||||
orderService.repetition(id);
|
||||
return Result.success();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user