IBIZCustomMapping.java 558 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package cn.ibizlab.demoapi.mapping;

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

@Mapper(componentModel = "spring", uses = {},implementationName="DemoAPIIBIZCustomMapping",
    nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
    nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface IBIZCustomMapping extends MappingBase<IBIZCustomDTO, IBIZCustom> {


}