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 |   27 +++++++++++++++++++++++++++
 1 files changed, 27 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 377dfbf..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
@@ -25,4 +25,31 @@
         return FebsUtil.view("modules/otc/otcShopList");
     }
 
+    /**
+     * 获取委托单列表
+     */
+    @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")
+    public String otcAppealList() {
+        return FebsUtil.view("modules/otc/otcAppealList");
+    }
+
 }

--
Gitblit v1.9.1