新版仿ok交易所-后端
1
zj
2025-09-30 0c389d73cc79a0027cf779721c6bf184b12f5d86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/**
 * Copyright © 2021-2025 <a href="http://www.jeeplus.org/">JeePlus</a> All rights reserved.
 */
package com.yami.trading.bean.data.mapstruct;
 
 
import com.yami.trading.common.mapstruct.EntityWrapper;
import com.yami.trading.bean.data.dto.KlineDTO;
import com.yami.trading.bean.data.domain.Kline;
import org.mapstruct.Mapper;
import org.mapstruct.ReportingPolicy;
import org.mapstruct.factory.Mappers;
 
/**
 *  KlineWrapper
 * @author lucas
 * @version 2023-03-16
 */
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE, uses = {} )
public interface KlineWrapper extends EntityWrapper<KlineDTO, Kline> {
 
    KlineWrapper INSTANCE = Mappers.getMapper(KlineWrapper.class);
}