| | |
| | | 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");
|
| | | }
|
| | |
|
| | | /**
|
| | | * 标签设置
|
| | |
| | | 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");
|
| | | }
|
| | |
|
| | | }
|