src/main/java/com/xcong/excoin/modules/yunding/controller/YunDingController.java
@@ -90,6 +90,19 @@ } /** * 订单详情 */ @ApiOperation(value = "订单详情") @ApiResponses({ @ApiResponse(code = 0, message = "success", response = YdOrderVo.class) }) @GetMapping(value = "/getOrderInfo") public Result getOrderInfo(@ApiParam(name = "id", value = "订单ID", required = true, example = "1") @RequestParam(value = "id") Long id) { return yunDingService.getOrderInfo(id); } /** *订单头部数据 */ @ApiOperation(value = "订单头部数据")