fix 修复 缺失的 社交数据转换器

This commit is contained in:
疯狂的狮子Li
2023-07-31 16:49:13 +08:00
parent d1b672c42e
commit 7888b0e857
2 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
package org.dromara.system.domain.convert;
import io.github.linpeilie.BaseMapper;
import org.dromara.system.api.domain.bo.RemoteSocialBo;
import org.dromara.system.domain.bo.SysSocialBo;
import org.mapstruct.Mapper;
import org.mapstruct.MappingConstants;
import org.mapstruct.ReportingPolicy;
/**
* 社交数据转换器
*
* @author Michelle.Chung
*/
@Mapper(componentModel = MappingConstants.ComponentModel.SPRING, unmappedTargetPolicy = ReportingPolicy.IGNORE)
public interface SysSocialBoConvert extends BaseMapper<RemoteSocialBo, SysSocialBo> {
}

View File

@@ -8,7 +8,7 @@ import org.mapstruct.MappingConstants;
import org.mapstruct.ReportingPolicy;
/**
* 客户端数据转换器
* 社交数据转换器
*
* @author Michelle.Chung
*/