Browse Source

修改字段类

master
刘力 3 years ago
parent
commit
3f08e16aba
  1. 11
      archives/src/main/java/com/storeroom/modules/dictionary/service/mapstruct/ArchivesTypeMapper.java

11
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<ArchivesTypeDTO,ArchivesType> {
}
Loading…
Cancel
Save