| | |
| | | package com.xcong.excoin.modules.coin.mapper;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.mapstruct.Mapper;
|
| | | import org.mapstruct.factory.Mappers;
|
| | |
|
| | | import com.baomidou.mybatisplus.core.metadata.IPage;
|
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
| | | import com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity;
|
| | | import com.xcong.excoin.modules.coin.parameter.vo.OrderWalletCoinDealVo;
|
| | |
|
| | | @Mapper
|
| | | public abstract class OrderWalletCoinDealMapper {
|
| | |
|
| | | public static final OrderWalletCoinDealMapper INSTANCE = Mappers.getMapper(OrderWalletCoinDealMapper.class);
|
| | |
|
| | | public abstract OrderWalletCoinDealVo entityToVo(OrderCoinsDealEntity orderCoinsDealEntity);
|
| | | public abstract OrderWalletCoinDealVo entityToVoOrder(OrderCoinsDealEntity orderCoinsDealEntity);
|
| | | |
| | | public abstract List<OrderWalletCoinDealVo> orderEntitiesToOrderListVo(List<OrderCoinsDealEntity> orderEntities);
|
| | | |
| | | public abstract Page<OrderWalletCoinDealVo> pageEntityToPageVo(IPage<OrderCoinsDealEntity> orderCoins);
|
| | |
|
| | | }
|