From 3f08e16abac62f13e6a46aa647f1c66c02a57ccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8A=9B?= Date: Mon, 30 May 2022 17:23:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AD=97=E6=AE=B5=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/mapstruct/ArchivesTypeMapper.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 archives/src/main/java/com/storeroom/modules/dictionary/service/mapstruct/ArchivesTypeMapper.java diff --git a/archives/src/main/java/com/storeroom/modules/dictionary/service/mapstruct/ArchivesTypeMapper.java b/archives/src/main/java/com/storeroom/modules/dictionary/service/mapstruct/ArchivesTypeMapper.java new file mode 100644 index 0000000..4b03b43 --- /dev/null +++ b/archives/src/main/java/com/storeroom/modules/dictionary/service/mapstruct/ArchivesTypeMapper.java @@ -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 { +}