package cn.ibizlab.demoapi.mapping; import org.mapstruct.*; import cn.ibizlab.core.sample.domain.IBIZSample0015; import cn.ibizlab.demoapi.dto.IBIZSample0015DTO; import cn.ibizlab.util.domain.MappingBase; @Mapper(componentModel = "spring", uses = {}, implementationName = "DemoAPIIBIZSample0015Mapping", nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE, nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS) public interface IBIZSample0015Mapping extends MappingBase<IBIZSample0015DTO, IBIZSample0015> { }