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

This commit is contained in:
wujiawei
2025-06-09 14:56:45 +08:00
parent 01a2937414
commit e1de673b52
40 changed files with 81 additions and 81 deletions

View File

@ -8,7 +8,7 @@ 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.LazyNettyServerPropertiesQueryOneCommand;
import org.framework.lazy.cloud.network.heartbeat.client.application.dto.LazyNettyServerPropertiesDTO;
import org.wu.framework.core.mapper.LazyMappers;
import org.mapstruct.Mapper;
import org.wu.framework.core.mapper.LazyMapper;
/**
* describe 服务端配置信息
*
@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2024/04/03 03:00 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@Mapper
@LazyMapper
public interface LazyNettyServerPropertiesDTOAssembler {

View File

@ -3,7 +3,7 @@ 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.mapstruct.Mapper;
import org.wu.framework.core.mapper.LazyMapper;
/**
* describe 服务端配置信息
*
@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2024/04/03 03:00 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@Mapper
@LazyMapper
public interface LazyNettyServerPropertiesConverter {