| | |
| | | import com.xcong.excoin.common.entity.FebsConstant;
|
| | | import com.xcong.excoin.common.utils.FebsUtil;
|
| | | import com.xcong.excoin.modules.documentary.entity.FollowTraderInfoEntity;
|
| | | import com.xcong.excoin.modules.documentary.entity.FollowTraderLabelEntity;
|
| | | import com.xcong.excoin.modules.documentary.mapper.FollowTraderLabelMapper;
|
| | | import com.xcong.excoin.modules.documentary.service.DocumentaryService;
|
| | | import com.xcong.excoin.modules.member.entity.MemberEntity;
|
| | | import com.xcong.excoin.modules.systemSetting.entity.PlatformTradeSettingEntity;
|
| | |
|
| | | import lombok.RequiredArgsConstructor;
|
| | | @Controller("documentaryView")
|
| | |
| | |
|
| | | private final DocumentaryService documentaryService;
|
| | |
|
| | | private final FollowTraderLabelMapper followTraderLabelMapper;
|
| | | |
| | | /**
|
| | | * 标签设置
|
| | | * @return
|
| | | */
|
| | | @GetMapping("followLabelSet")
|
| | | @RequiresPermissions("followLabelSet:view")
|
| | | public String followLabelSet() {
|
| | | return FebsUtil.view("modules/documentary/followLabelSet");
|
| | | }
|
| | | |
| | | /**
|
| | | * 标签设置---修改
|
| | | */
|
| | | @GetMapping("followLabelSetUpdate/{id}")
|
| | | @RequiresPermissions("followLabelSetUpdate:update")
|
| | | public String followLabelSetUpdate(@PathVariable long id, Model model) {
|
| | | FollowTraderLabelEntity data = followTraderLabelMapper.selectById(id);
|
| | | model.addAttribute("member", data);
|
| | | return FebsUtil.view("modules/documentary/followLabelSetDetail");
|
| | | }
|
| | | |
| | | /**
|
| | | * 标签设置---新增
|
| | | */
|
| | | @GetMapping("followLabelSetAdd")
|
| | | @RequiresPermissions("followLabelSetAdd:add")
|
| | | public String noticeManageAdd() {
|
| | | return FebsUtil.view("modules/documentary/followLabelSetAdd");
|
| | | }
|
| | | |
| | | /**
|
| | | * 交易员申请
|
| | | * @return
|