zyy
2025-12-02 dd661f80c2367581c1884732c787cb613f00bf83
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.future.mapstruct;
 
 
import com.yami.trading.common.mapstruct.EntityWrapper;
import com.yami.trading.bean.future.dto.FuturesParaDTO;
import com.yami.trading.bean.future.domain.FuturesPara;
import org.mapstruct.Mapper;
import org.mapstruct.ReportingPolicy;
import org.mapstruct.factory.Mappers;
 
/**
 *  TFuturesParaWrapper
 * @author lucas
 * @version 2023-04-08
 */
@Mapper(componentModel = "spring", unmappedTargetPolicy = ReportingPolicy.IGNORE, uses = {} )
public interface TFuturesParaWrapper extends EntityWrapper<FuturesParaDTO, FuturesPara> {
 
    TFuturesParaWrapper INSTANCE = Mappers.getMapper(TFuturesParaWrapper.class);
}