xiaoyong931011
2021-03-03 cb371230fa4f1d483dfe58e0b005e61cdb08a6d6
src/main/java/com/xcong/excoin/modules/documentary/controller/ViewController.java
@@ -26,6 +26,17 @@
   private final DocumentaryService documentaryService;
   
   private final FollowTraderLabelMapper followTraderLabelMapper;
    public static long idFromMember;
    /**
     *交易员利润分成---详情
     */
    @GetMapping("seeFollowerInfo/{id}")
    public String seeFollowerInfo(@PathVariable long id, Model model) {
        idFromMember = id;
        return FebsUtil.view("modules/documentary/seeFollowerInfo");
    }
   
   /**
    * 标签设置
@@ -90,5 +101,15 @@
        model.addAttribute("member", data);
        return FebsUtil.view("modules/documentary/modifyProfitRatio");
    }
    /**
     * 交易员利润分成
     * @return
     */
    @GetMapping("traderProfit")
    @RequiresPermissions("traderProfit:view")
    public String traderProfit() {
        return FebsUtil.view("modules/documentary/traderProfit");
    }
}