From 8dd45c1c726b5628dfd8cae1992a27112ebb6af6 Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 16 Mar 2022 15:23:38 +0800 Subject: [PATCH] Merge branch 'bea-back' of http://120.27.238.55:7000/r/exchange-back into bea-back --- src/main/java/com/xcong/excoin/modules/documentary/service/DocumentaryService.java | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/documentary/service/DocumentaryService.java b/src/main/java/com/xcong/excoin/modules/documentary/service/DocumentaryService.java index b7bb220..22812c6 100644 --- a/src/main/java/com/xcong/excoin/modules/documentary/service/DocumentaryService.java +++ b/src/main/java/com/xcong/excoin/modules/documentary/service/DocumentaryService.java @@ -8,7 +8,11 @@ import com.xcong.excoin.common.entity.FebsResponse; import com.xcong.excoin.common.entity.QueryRequest; import com.xcong.excoin.modules.documentary.dto.FollowTraderInfoDto; +import com.xcong.excoin.modules.documentary.dto.ModifyProfitRatioDto; import com.xcong.excoin.modules.documentary.entity.FollowTraderInfoEntity; +import com.xcong.excoin.modules.documentary.entity.FollowTraderLabelEntity; +import com.xcong.excoin.modules.documentary.entity.FollowTraderProfitInfoEntity; +import com.xcong.excoin.modules.documentary.vo.SeeFollowerInfoVo; public interface DocumentaryService extends IService<FollowTraderInfoEntity> { @@ -22,4 +26,22 @@ FebsResponse traderGetFull(@NotNull(message = "{required}") Long id); + IPage<FollowTraderLabelEntity> traderLabelList(FollowTraderLabelEntity followTraderLabelEntity, QueryRequest request); + + FebsResponse traderLabelDelete(@NotNull(message = "{required}") Long id); + + void followLabelSetAdd(@Valid FollowTraderLabelEntity followTraderLabelEntity); + + void followLabelSetUpdate(@Valid FollowTraderLabelEntity followTraderLabelEntity); + + FebsResponse modifyProfitRatio(@Valid ModifyProfitRatioDto modifyProfitRatioDto); + + FebsResponse traderGetOn(@NotNull(message = "{required}") Long id); + + FebsResponse traderGetOutFrist(@NotNull(message = "{required}")Long id); + + IPage<FollowTraderProfitInfoEntity> findTraderProfitInfoInfoInPage(FollowTraderProfitInfoEntity followTraderProfitInfoEntity, + QueryRequest request); + + IPage<SeeFollowerInfoVo> findlistSeeFollowerInfo(QueryRequest request, FollowTraderProfitInfoEntity followTraderProfitInfoEntity); } -- Gitblit v1.9.1