| | |
| | | import org.junit.jupiter.api.Test; |
| | | import org.springframework.boot.test.context.SpringBootTest; |
| | | |
| | | import com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity;
|
| | | import com.xcong.excoin.modules.coin.mapper.OrderWalletCoinDealMapper;
|
| | | import com.xcong.excoin.modules.coin.parameter.vo.OrderWalletCoinDealVo;
|
| | |
|
| | | import java.util.ArrayList; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | log.info(entities.toString()); |
| | | } |
| | | |
| | | @Test
|
| | | public void walletCoinTest() {
|
| | | OrderCoinsDealEntity orderCoinsDealEntity = new OrderCoinsDealEntity();
|
| | | orderCoinsDealEntity.setMemberId(1L);
|
| | | orderCoinsDealEntity.setOrderNo("123445");
|
| | | OrderWalletCoinDealVo entityToVo = OrderWalletCoinDealMapper.INSTANCE.entityToVoOrder(orderCoinsDealEntity);
|
| | | System.out.println(entityToVo);
|
| | | }
|
| | |
|
| | | } |