[fix] 修复native打包与mapper不兼容问题,切换至自定义bean拷贝

This commit is contained in:
wujiawei
2025-06-09 16:19:55 +08:00
parent e1de673b52
commit ff150eb31c
40 changed files with 121 additions and 121 deletions

View File

@ -7,8 +7,8 @@ import org.framework.lazy.cloud.network.heartbeat.client.application.command.laz
import org.framework.lazy.cloud.network.heartbeat.client.application.command.lazy.netty.server.properties.LazyNettyServerPropertiesQueryListCommand;
import org.framework.lazy.cloud.network.heartbeat.client.application.command.lazy.netty.server.properties.LazyNettyServerPropertiesQueryOneCommand;
import org.framework.lazy.cloud.network.heartbeat.client.application.dto.LazyNettyServerPropertiesDTO;
import org.wu.framework.core.mapper.LazyMappers;
import org.wu.framework.core.mapper.LazyMapper;
import org.mapstruct.factory.Mappers;
import org.mapstruct.Mapper;
/**
* describe 服务端配置信息
*
@ -29,7 +29,7 @@ public interface LazyNettyServerPropertiesDTOAssembler {
* @author Jia wei Wu
* @date 2024/04/03 03:00 下午
**/
LazyNettyServerPropertiesDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyServerPropertiesDTOAssembler.class);
LazyNettyServerPropertiesDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyServerPropertiesDTOAssembler.class);
/**
* describe 应用层存储入参转换成 领域对象
*

View File

@ -2,8 +2,8 @@ package org.framework.lazy.cloud.network.heartbeat.client.infrastructure.convert
import org.framework.lazy.cloud.network.heartbeat.client.domain.model.lazy.netty.server.properties.LazyNettyServerProperties;
import org.framework.lazy.cloud.network.heartbeat.client.infrastructure.entity.LazyNettyServerPropertiesDO;
import org.wu.framework.core.mapper.LazyMappers;
import org.wu.framework.core.mapper.LazyMapper;
import org.mapstruct.Mapper;
import org.mapstruct.factory.Mappers;
/**
* describe 服务端配置信息
*
@ -11,7 +11,7 @@ import org.wu.framework.core.mapper.LazyMapper;
* @date 2024/04/03 03:00 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyServerPropertiesConverter {
@ -24,7 +24,7 @@ public interface LazyNettyServerPropertiesConverter {
* @author Jia wei Wu
* @date 2024/04/03 03:00 下午
**/
LazyNettyServerPropertiesConverter INSTANCE = LazyMappers.getMapper(LazyNettyServerPropertiesConverter.class);
LazyNettyServerPropertiesConverter INSTANCE = Mappers.getMapper(LazyNettyServerPropertiesConverter.class);
/**
* describe 实体对象 转换成领域对象
*