IBIZSample0013Mapping.java 555 字节
Newer Older
1 2 3 4 5 6 7
package cn.ibizlab.demoapi.mapping;

import org.mapstruct.*;
import cn.ibizlab.core.sample.domain.IBIZSample0013;
import cn.ibizlab.demoapi.dto.IBIZSample0013DTO;
import cn.ibizlab.util.domain.MappingBase;

8 9 10
@Mapper(componentModel = "spring", uses = {}, implementationName = "DemoAPIIBIZSample0013Mapping",
        nullValuePropertyMappingStrategy = NullValuePropertyMappingStrategy.IGNORE,
        nullValueCheckStrategy = NullValueCheckStrategy.ALWAYS)
11 12 13 14 15
public interface IBIZSample0013Mapping extends MappingBase<IBIZSample0013DTO, IBIZSample0013> {


}