IBIZSample0019Mapping.java 582 字节
package cn.ibizlab.demoapi.mapping;

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

@Mapper(componentModel = "spring", uses = {},implementationName="DemoAPIIBIZSample0019Mapping",
    nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
    nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface IBIZSample0019Mapping extends MappingBase<IBIZSample0019DTO, IBIZSample0019> {


}