From 13cf5a68e9d64b722c1c38bb3d675b462ec19d5e Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Tue, 18 May 2021 15:58:59 +0800 Subject: [PATCH] 20210518 申诉 --- src/main/java/com/xcong/excoin/modules/documentary/controller/ViewController.java | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 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 abbf2dc..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"); + } /** * 标签设置 @@ -79,4 +90,26 @@ return FebsUtil.view("modules/documentary/traderDetail"); } + /** + * 交易员收益率修改 + * @return + */ + @GetMapping("modifyProfitRatio/{id}") + @RequiresPermissions("modifyProfitRatio:update") + public String modifyProfitRatio(@PathVariable long id, Model model) { + FollowTraderInfoEntity data = documentaryService.selectTraderDetailByid(id); + 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