package cn.ibizlab.demoapi.mapping;

import org.mapstruct.*;
import cn.ibizlab.core.sample.domain.IBIZSample0007;
import cn.ibizlab.demoapi.dto.IBIZSample0007DTO;
import cn.ibizlab.util.domain.MappingBase;

@Mapper(componentModel = "spring", uses = {}, implementationName = "DemoAPIIBIZSample0007Mapping",
        nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
        nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface IBIZSample0007Mapping extends MappingBase<IBIZSample0007DTO, IBIZSample0007> {


}