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