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