package cn.ibizlab.demoapi.mapping;
import org.mapstruct.*;
import cn.ibizlab.core.sample.domain.IBIZCustomer;
import cn.ibizlab.demoapi.dto.IBIZCustomerDTO;
import cn.ibizlab.util.domain.MappingBase;
@Mapper(componentModel = "spring", uses = {}, implementationName = "DemoAPIIBIZCustomerMapping",
nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface IBIZCustomerMapping extends MappingBase<IBIZCustomerDTO, IBIZCustomer> {
}
-
由 ibizdev 提交于3f283ca5