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