From 09c7e370124e4c2fed21f35cea98f4626d2715e7 Mon Sep 17 00:00:00 2001 From: zainali5120 <512061637@qq.com> Date: Tue, 13 Oct 2020 18:59:35 +0800 Subject: [PATCH] roc人工提币 --- src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 56 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java b/src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java index e08dee9..712d916 100644 --- a/src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java +++ b/src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java @@ -34,6 +34,15 @@ } /** + * 当前持仓---Test + */ + @GetMapping("contractHoldOrderAloneTest") + @RequiresPermissions("contractHoldOrderAloneTest:view") + public String contractHoldOrderAloneTest() { + return FebsUtil.view("modules/trademanage/contractHoldOrderAloneTest"); + } + + /** * 账户信息 * @return */ @@ -41,6 +50,24 @@ @RequiresPermissions("accountInfo:view") public String accountInfo() { return FebsUtil.view("modules/trademanage/accountInfo"); + } + /** + * 账户信息---alone + * @return + */ + @GetMapping("accountInfoAlone") + @RequiresPermissions("accountInfoAlone:view") + public String accountInfoAlone() { + return FebsUtil.view("modules/trademanage/accountInfoAlone"); + } + /** + * 账户信息---Test + * @return + */ + @GetMapping("accountInfoAloneTest") + @RequiresPermissions("accountInfoAloneTest:view") + public String accountInfoAloneTest() { + return FebsUtil.view("modules/trademanage/accountInfoAloneTest"); } /** @@ -84,6 +111,16 @@ } /** + * 历史委托明细---Test + * @return + */ + @GetMapping("historyOrderAloneTest") + @RequiresPermissions("historyOrderAloneTest:view") + public String historyOrderAloneTest() { + return FebsUtil.view("modules/trademanage/historyOrderAloneTest"); + } + + /** * 全部历史委托明细 * @return */ @@ -93,4 +130,23 @@ return FebsUtil.view("modules/trademanage/historyOrderAll"); } + /** + * 返佣总明细 + * @return + */ + @GetMapping("agentReturnInfosAlone") + @RequiresPermissions("agentReturnInfosAlone:view") + public String agentReturnInfosAlone() { + return FebsUtil.view("modules/trademanage/agentReturnInfosAlone"); + } + /** + * 返佣总明细--Test + * @return + */ + @GetMapping("agentReturnInfosAloneTest") + @RequiresPermissions("agentReturnInfosAloneTest:view") + public String agentReturnInfosAloneTest() { + return FebsUtil.view("modules/trademanage/agentReturnInfosAloneTest"); + } + } -- Gitblit v1.9.1