From fb5549475c11fa264f4a4630638c136c99250d1e Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Thu, 20 May 2021 11:36:40 +0800
Subject: [PATCH] 20210520 订单更新付款人,订单状态,支付时间
---
src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java b/src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java
index 867960b..7074b12 100644
--- a/src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java
+++ b/src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java
@@ -3,6 +3,7 @@
import com.xcong.excoin.common.entity.FebsConstant;
import com.xcong.excoin.common.utils.FebsUtil;
import com.xcong.excoin.modules.member.vo.MemberAuthenticationVo;
+import com.xcong.excoin.modules.otc.entity.OtcOrderEntity;
import com.xcong.excoin.modules.otc.service.OtcService;
import com.xcong.excoin.modules.otc.vo.OtcAppealInfoVo;
import lombok.RequiredArgsConstructor;
@@ -48,6 +49,17 @@
}
/**
+ * 获取订单列表--详情
+ */
+ @GetMapping("otcOrderInfo/{id}")
+ @RequiresPermissions("otcOrderInfo:update")
+ public String otcOrderInfo(@PathVariable long id, Model model) {
+ OtcOrderEntity data = otcService.otcOrderInfo(id);
+ model.addAttribute("member", data);
+ return FebsUtil.view("modules/otc/otcOrderInfo");
+ }
+
+ /**
* 获取申诉列表
*/
@GetMapping("otcAppealList")
--
Gitblit v1.9.1