mirror of
https://gitee.com/dromara/RuoYi-Cloud-Plus.git
synced 2025-09-03 11:05:58 +00:00
fix 修正缺失 SysClientVoConvert 导致转换异常 ;
fix 修正 auth 模块缺失引用导致解密异常 ;
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package org.dromara.system.domain.convert;
|
||||
|
||||
import io.github.linpeilie.BaseMapper;
|
||||
import org.dromara.system.api.domain.vo.RemoteClientVo;
|
||||
import org.dromara.system.domain.vo.SysClientVo;
|
||||
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 SysClientVoConvert extends BaseMapper<SysClientVo, RemoteClientVo> {
|
||||
}
|
Reference in New Issue
Block a user