|  |  | 
 |  |  | package com.xcong.excoin.modules.home.mapper;
 | 
 |  |  | 
 | 
 |  |  | import com.xcong.excoin.modules.home.entity.MemberQuickBuySaleEntity;
 | 
 |  |  | import java.util.List;
 | 
 |  |  | 
 | 
 |  |  | import org.mapstruct.Mapper;
 | 
 |  |  | import org.mapstruct.factory.Mappers;
 | 
 |  |  | 
 | 
 |  |  | import com.xcong.excoin.modules.home.dto.MemberQuickBuySaleDto;
 | 
 |  |  | import com.xcong.excoin.modules.home.entity.MemberQuickBuySaleEntity;
 | 
 |  |  | import com.xcong.excoin.modules.home.vo.MemberQuickBuySaleDetailVo;
 | 
 |  |  | 
 | 
 |  |  | 
 | 
 |  |  | @Mapper
 | 
 |  |  | 
 |  |  | 
 | 
 |  |  |     public static final MemberQuickBuySaleEntityMapper INSTANCE = Mappers.getMapper(MemberQuickBuySaleEntityMapper.class);
 | 
 |  |  | 
 | 
 |  |  |     public abstract MemberQuickBuySaleDetailVo entityToVo(MemberQuickBuySaleEntity memberQuickBuySaleEntity);
 | 
 |  |  |     
 | 
 |  |  |     public abstract MemberQuickBuySaleEntity dtoToEntity(MemberQuickBuySaleDto dto);
 | 
 |  |  |      | 
 |  |  |     public abstract List<MemberQuickBuySaleDetailVo> entityListToVoList(List<MemberQuickBuySaleEntity> memberQuickBuySaleEntityList);
 | 
 |  |  | 
 | 
 |  |  | }
 |