IBIZSoftwareSuitMapping.java 594 字节
package cn.ibizlab.demoapi.mapping;

import org.mapstruct.*;
import cn.ibizlab.core.sample.domain.IBIZSoftwareSuit;
import cn.ibizlab.demoapi.dto.IBIZSoftwareSuitDTO;
import cn.ibizlab.util.domain.MappingBase;
import org.mapstruct.factory.Mappers;

@Mapper(componentModel = "spring", uses = {},implementationName="DemoAPIIBIZSoftwareSuitMapping",
    nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
    nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface IBIZSoftwareSuitMapping extends MappingBase<IBIZSoftwareSuitDTO, IBIZSoftwareSuit> {


}