You've already forked FrameTour-BE
订单类型由订单明细移动至订单本体中
This commit is contained in:
@ -29,7 +29,6 @@ public class AppOrderController {
|
||||
|
||||
@ApiOperation("用户端订单列表查询")
|
||||
@PostMapping("/page")
|
||||
@IgnoreToken
|
||||
public ApiResponse<PageInfo<OrderAppRespVO>> pageQuery(@RequestBody OrderReqQuery orderReqQuery) {
|
||||
String userId = BaseContextHandler.getUserId();
|
||||
orderReqQuery.setMemberId(Long.valueOf(userId));
|
||||
@ -38,7 +37,6 @@ public class AppOrderController {
|
||||
|
||||
@ApiOperation("用户端订单详情查询")
|
||||
@GetMapping("getOrderDetails/{id}")
|
||||
@IgnoreToken
|
||||
public ApiResponse<OrderAppRespVO> getOrderDetails(@PathVariable("id") Long id) {
|
||||
return orderService.appDetail(id);
|
||||
}
|
||||
|
Reference in New Issue
Block a user