From d123da994f9e70a56a95586c3c9c2fd0f8cbcfce Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 18 May 2021 14:08:14 +0800 Subject: [PATCH] 20210517 云顶 --- src/main/java/com/xcong/excoin/modules/documentary/controller/ViewController.java | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/documentary/controller/ViewController.java b/src/main/java/com/xcong/excoin/modules/documentary/controller/ViewController.java index 3a37e51..158e6c8 100644 --- a/src/main/java/com/xcong/excoin/modules/documentary/controller/ViewController.java +++ b/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"); + } } -- Gitblit v1.9.1