Commit 9db35015 by 刘鑫

test(放开预约单进度查询接口逻辑进行测试):

1 parent 03f90606
......@@ -217,11 +217,11 @@ public class PeaApiController {
*/
@GetMapping("/order/stage/query")
public Result<OrderDTO.StageResult> orderStage(@NotBlank @RequestParam("orderId") String orderId) {
OrderDTO.StageResult stageResult = JsonUtil.parse(stage, OrderDTO.StageResult.class).get();
/*OrderDTO.StageResult stageResult = JsonUtil.parse(stage, OrderDTO.StageResult.class).get();
stageResult.setOrderId(orderId);
return Result.success(stageResult);
// return Result.success(orderCreateService.orderStage(orderId));
return Result.success(stageResult);*/
return Result.success(orderCreateService.orderStage(orderId));
}
/**
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!