DAChartMapping.java 502 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package cn.ibizlab.api.mapping;

import org.mapstruct.*;
import cn.ibizlab.core.analysis.domain.DAChart;
import cn.ibizlab.api.dto.DAChartDTO;
import cn.ibizlab.util.domain.MappingBase;

@Mapper(componentModel = "spring", uses = {}, implementationName = "apiDAChartMapping",
        nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
        nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface DAChartMapping extends MappingBase<DAChartDTO, DAChart> {


}