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