xiaoyong931011
2020-08-20 e74838c27c1779c1fd056e40b1e9dad5ff1537d4
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");
    }
}