From 7d098b8c03c2a3f2dc7b51f73cc8d16b56dfa764 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Tue, 18 May 2021 16:44:41 +0800
Subject: [PATCH] 20210518 订单
---
src/main/java/com/xcong/excoin/modules/otc/controller/ViewController.java | 20 +++++++++++++++++++-
1 files changed, 19 insertions(+), 1 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 0b8ffcc..4fa9d6f 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
@@ -26,7 +26,25 @@
}
/**
- * 获取商户审核列表
+ * 获取委托单列表
+ */
+ @GetMapping("otcEntrustList")
+ @RequiresPermissions("otcEntrustList:view")
+ public String otcEntrustList() {
+ return FebsUtil.view("modules/otc/otcEntrustList");
+ }
+
+ /**
+ * 获取订单列表
+ */
+ @GetMapping("otcOrderList")
+ @RequiresPermissions("otcOrderList:view")
+ public String otcOrderList() {
+ return FebsUtil.view("modules/otc/otcOrderList");
+ }
+
+ /**
+ * 获取申诉列表
*/
@GetMapping("otcAppealList")
@RequiresPermissions("otcAppealList:view")
--
Gitblit v1.9.1