zainali5120
2020-10-14 071433a3b29cc73bddd6d9ea5ac3bc4c8807948c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.xcong.excoin.modules.coin.mapper;
 
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
 
import com.xcong.excoin.modules.coin.entity.OrderCoinsEntity;
import com.xcong.excoin.modules.coin.parameter.vo.OrderWalletCoinVo;
 
@Mapper
public abstract class OrderWalletCoinMapper {
 
    public static final OrderWalletCoinMapper INSTANCE = Mappers.getMapper(OrderWalletCoinMapper.class);
    
    public abstract OrderWalletCoinVo entityToVo(OrderCoinsEntity orderCoinsEntity);
 
}