IBIZCustomerMapping.java 543 字节
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> {


}