package cn.ibizlab.demoapi.mapping;

import org.mapstruct.*;
import cn.ibizlab.core.sample.domain.IBIZSample0009;
import cn.ibizlab.demoapi.dto.IBIZSample0009DTO;
import cn.ibizlab.util.domain.MappingBase;

@Mapper(componentModel = "spring", uses = {}, implementationName = "DemoAPIIBIZSample0009Mapping",
        nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
        nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
public interface IBIZSample0009Mapping extends MappingBase<IBIZSample0009DTO, IBIZSample0009> {


}