|
|
@ -0,0 +1,11 @@ |
|
|
|
package com.storeroom.modules.dictionary.service.mapstruct; |
|
|
|
|
|
|
|
import com.storeroom.base.BaseMapper; |
|
|
|
import com.storeroom.modules.dictionary.domain.ArchivesType; |
|
|
|
import com.storeroom.modules.dictionary.service.dto.ArchivesTypeDTO; |
|
|
|
import org.mapstruct.Mapper; |
|
|
|
import org.mapstruct.ReportingPolicy; |
|
|
|
|
|
|
|
@Mapper(componentModel = "spring",unmappedTargetPolicy = ReportingPolicy.IGNORE) |
|
|
|
public interface ArchivesTypeMapper extends BaseMapper<ArchivesTypeDTO,ArchivesType> { |
|
|
|
} |