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