xiaoyong931011
2021-03-03 3ea894165b42672d0a9d93341e84fbc9f24f5294
src/main/java/com/xcong/excoin/modules/documentary/service/DocumentaryService.java
@@ -8,8 +8,10 @@
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;
public interface DocumentaryService extends IService<FollowTraderInfoEntity> {
@@ -31,4 +33,11 @@
   void followLabelSetUpdate(@Valid FollowTraderLabelEntity followTraderLabelEntity);
    IPage<FollowTraderProfitInfoEntity> findTraderDataInfoInfoInPage(FollowTraderProfitInfoEntity followTraderProfitInfoEntity, QueryRequest request);
   FebsResponse modifyProfitRatio(@Valid ModifyProfitRatioDto modifyProfitRatioDto);
   FebsResponse traderGetOn(@NotNull(message = "{required}") Long id);
   FebsResponse traderGetOutFrist(@NotNull(message = "{required}")Long id);
}