package cn.ibizlab.demoapi.mapping;

import org.mapstruct.*;
import cn.ibizlab.core.sample.domain.IBIZSample0008;
import cn.ibizlab.demoapi.dto.IBIZSample0008DTO;
import cn.ibizlab.util.domain.MappingBase;

@Mapper(componentModel = "spring", uses = {}, implementationName = "DemoAPIIBIZSample0008Mapping",
        nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
        nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface IBIZSample0008Mapping extends MappingBase<IBIZSample0008DTO, IBIZSample0008> {


}