IBIZCustomerMGMapping.java 554 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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;

@Mapper(componentModel = "spring", uses = {}, implementationName = "DemoAPIIBIZCustomerMGMapping",
        nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
        nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface IBIZCustomerMGMapping extends MappingBase<IBIZCustomerMGDTO, IBIZCustomerMG> {


}