| | |
| | | import com.xcong.excoin.common.entity.QueryRequest;
|
| | | import com.xcong.excoin.modules.documentary.dto.FollowTraderInfoDto;
|
| | | import com.xcong.excoin.modules.documentary.entity.FollowTraderInfoEntity;
|
| | | import com.xcong.excoin.modules.documentary.entity.FollowTraderLabelEntity;
|
| | |
|
| | | public interface DocumentaryService extends IService<FollowTraderInfoEntity> {
|
| | |
|
| | |
| | |
|
| | | 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);
|
| | |
|
| | | }
|