新版仿ok交易所-后端
1
zj
2025-06-18 2ee9dbc37cbe186e98e5ca458033ba517b981d0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/**
 * Copyright © 2021-2025 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
 */
package com.yami.trading.bean.item.mapstruct;
 
 
import com.yami.trading.common.mapstruct.EntityWrapper;
import com.yami.trading.bean.item.dto.ItemSummaryDTO;
import com.yami.trading.bean.item.domain.ItemSummary;
import org.mapstruct.Mapper;
import org.mapstruct.Mapping;
import org.mapstruct.Mappings;
import org.mapstruct.ReportingPolicy;
import org.mapstruct.factory.Mappers;
 
/**
 *  ItemSummaryWrapper
 * @author lucas
 * @version 2023-05-01
 */
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE, uses = {} )
public interface ItemSummaryWrapper extends EntityWrapper<ItemSummaryDTO, ItemSummary> {
 
    ItemSummaryWrapper INSTANCE = Mappers.getMapper(ItemSummaryWrapper.class);
    
    ItemSummary toEntity(ItemSummaryDTO dto);
 
 
 
    ItemSummaryDTO toDTO(ItemSummary entity);
}