fix 修复 !pr102 存在的问题
parent
74ae98bbc5
commit
1917eb7a06
@ -0,0 +1,17 @@
|
|||||||
|
package org.dromara.system.domain.convert;
|
||||||
|
|
||||||
|
import io.github.linpeilie.BaseMapper;
|
||||||
|
import org.dromara.system.api.domain.vo.RemoteSocialVo;
|
||||||
|
import org.dromara.system.domain.vo.SysSocialVo;
|
||||||
|
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 SysSocialVoConvert extends BaseMapper<SysSocialVo, RemoteSocialVo> {
|
||||||
|
}
|
Loading…
Reference in New Issue