xiaoyong931011
2020-07-19 1cd2570536f5c6f61fe58007ffc6b9f60c6c5599
src/main/java/com/xcong/excoin/modules/trademanage/controller/ViewController.java
@@ -11,14 +11,67 @@
 * @author wzy
 * @date 2020-06-10
 **/
@Controller("contractHoldOrderView")
@Controller("tradeManageView")
@RequestMapping(FebsConstant.VIEW_PREFIX + "modules/trademanage")
public class ViewController {
   /**
    * 当前持仓
    */
    @GetMapping("contractHoldOrder")
    @RequiresPermissions("contractHoldOrder:view")
    public String contractHoldOrder() {
        return FebsUtil.view("modules/trademanage/contractHoldOrder");
    }
    
    /**
     * 账户信息
     * @return
     */
    @GetMapping("accountInfo")
    @RequiresPermissions("accountInfo:view")
    public String accountInfo() {
        return FebsUtil.view("modules/trademanage/accountInfo");
    }
    /**
     * 返佣明细
     * @return
     */
    @GetMapping("agentReturnInfo")
    @RequiresPermissions("agentReturnInfo:view")
    public String agentReturnInfo() {
        return FebsUtil.view("modules/trademanage/agentReturnInfo");
    }
    /**
     * 返佣总明细
     * @return
     */
    @GetMapping("agentReturnInfos")
    @RequiresPermissions("agentReturnInfos:view")
    public String agentReturnInfos() {
        return FebsUtil.view("modules/trademanage/agentReturnInfos");
    }
    /**
     * 历史委托明细
     * @return
     */
    @GetMapping("historyOrder")
    @RequiresPermissions("historyOrder:view")
    public String historyOrder() {
       return FebsUtil.view("modules/trademanage/historyOrder");
    }
    /**
     * 全部历史委托明细
     * @return
     */
    @GetMapping("historyOrderAll")
    @RequiresPermissions("historyOrderAll:view")
    public String historyOrderAll() {
       return FebsUtil.view("modules/trademanage/historyOrderAll");
    }
}