| | |
| | | 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.dto.HistoryOrderRecordsDto;
|
| | | import com.xcong.excoin.modules.documentary.entity.FollowTraderProfitInfoEntity;
|
| | |
|
| | | public interface DocumentaryService extends IService<FollowTraderProfitInfoEntity> {
|
| | |
|
| | | public Result getMemberIsTradeInfo();
|
| | |
|
| | | public Result getFollowTraderProfitInfo(@Valid RecordsPageDto recordsPageDto);
|
| | |
|
| | | public Result getWalletAgentIntoRecords(@Valid HistoryOrderRecordsDto historyOrderRecordsDto);
|
| | |
|
| | | }
|