1
zj
2024-06-13 a4662cc65a02f258062bf6cc392ceb1017db9292
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * 
 */
package com.yami.trading.bean.chat.mapstruct;
 
 
import com.yami.trading.bean.chat.domain.OtcOnlineChatMessage;
import com.yami.trading.common.mapstruct.EntityWrapper;
import com.yami.trading.bean.chat.dto.TOtcOnlinechatMessageDTO;
import org.mapstruct.Mapper;
import org.mapstruct.ReportingPolicy;
import org.mapstruct.factory.Mappers;
 
/**
 *  TOtcOnlinechatMessageWrapper
 * @author lucas
 * @version 2023-04-15
 */
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE, uses = {} )
public interface TOtcOnlinechatMessageWrapper extends EntityWrapper<TOtcOnlinechatMessageDTO, OtcOnlineChatMessage> {
 
    TOtcOnlinechatMessageWrapper INSTANCE = Mappers.getMapper(TOtcOnlinechatMessageWrapper.class);
}