xiaoyong931011
2020-05-26 12f731ddaedf03277d62379fbb2ca12a8e9e45fe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.xcong.excoin.modules.coin.mapper;
 
import org.mapstruct.factory.Mappers;
 
import com.xcong.excoin.modules.coin.entity.OrderCoinsDealEntity;
import com.xcong.excoin.modules.coin.parameter.vo.OrderWalletCoinDealVo;
 
public abstract class OrderWalletCoinDealMapper {
    
    public static final OrderWalletCoinDealMapper INSTANCE = Mappers.getMapper(OrderWalletCoinDealMapper.class);
    
    public abstract OrderWalletCoinDealVo entityToVo(OrderCoinsDealEntity orderCoinsDealEntity);
 
}