From 044cb4aa5da2cf5928e3e36e4007a361cd88fb24 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Mon, 27 Jul 2020 10:46:56 +0800 Subject: [PATCH] 20200727 代码提交 --- 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