xiaoyong931011
2020-07-29 69fd409bbd0cdce5b376be46e7ca5828568607c9
src/main/java/com/xcong/excoin/modules/documentary/service/DocumentaryService.java
@@ -1,11 +1,16 @@
package com.xcong.excoin.modules.documentary.service;
import javax.validation.Valid;
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.coin.parameter.dto.RecordsPageDto;
import com.xcong.excoin.modules.documentary.entity.FollowTraderProfitInfoEntity;
public interface DocumentaryService extends IService<FollowTraderProfitInfoEntity> {
   public Result getMemberIsTradeInfo();
   public Result getFollowTraderProfitInfo(@Valid RecordsPageDto recordsPageDto);
}