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

This commit is contained in:
wujiawei
2025-06-09 16:23:25 +08:00
parent ff150eb31c
commit 221623e9c0
41 changed files with 240 additions and 39 deletions

View File

@ -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
**/
@LazyMapper
@Mapper
public interface LazyNettyServerPropertiesDTOAssembler {

View File

@ -0,0 +1,144 @@
package org.framework.lazy.cloud.network.heartbeat.client.application.assembler;
import javax.annotation.processing.Generated;
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.command.lazy.netty.server.properties.LazyNettyServerPropertiesRemoveCommand;
import org.framework.lazy.cloud.network.heartbeat.client.application.command.lazy.netty.server.properties.LazyNettyServerPropertiesStoryCommand;
import org.framework.lazy.cloud.network.heartbeat.client.application.command.lazy.netty.server.properties.LazyNettyServerPropertiesUpdateCommand;
import org.framework.lazy.cloud.network.heartbeat.client.application.dto.LazyNettyServerPropertiesDTO;
import org.framework.lazy.cloud.network.heartbeat.client.domain.model.lazy.netty.server.properties.LazyNettyServerProperties;
@Generated(
value = "org.mapstruct.ap.MappingProcessor",
date = "2025-06-03T16:10:52+0800",
comments = "version: 1.6.3, compiler: javac, environment: Java 21.0.2 (Oracle Corporation)"
)
public class LazyNettyServerPropertiesDTOAssemblerImpl implements LazyNettyServerPropertiesDTOAssembler {
@Override
public LazyNettyServerProperties toLazyNettyServerProperties(LazyNettyServerPropertiesStoryCommand lazyNettyServerPropertiesStoryCommand) {
if ( lazyNettyServerPropertiesStoryCommand == null ) {
return null;
}
LazyNettyServerProperties lazyNettyServerProperties = new LazyNettyServerProperties();
lazyNettyServerProperties.setClientId( lazyNettyServerPropertiesStoryCommand.getClientId() );
lazyNettyServerProperties.setConnectStatus( lazyNettyServerPropertiesStoryCommand.getConnectStatus() );
lazyNettyServerProperties.setCreateTime( lazyNettyServerPropertiesStoryCommand.getCreateTime() );
lazyNettyServerProperties.setInetHost( lazyNettyServerPropertiesStoryCommand.getInetHost() );
lazyNettyServerProperties.setInetPort( lazyNettyServerPropertiesStoryCommand.getInetPort() );
lazyNettyServerProperties.setType( lazyNettyServerPropertiesStoryCommand.getType() );
lazyNettyServerProperties.setAppKey( lazyNettyServerPropertiesStoryCommand.getAppKey() );
lazyNettyServerProperties.setAppSecret( lazyNettyServerPropertiesStoryCommand.getAppSecret() );
lazyNettyServerProperties.setUpdateTime( lazyNettyServerPropertiesStoryCommand.getUpdateTime() );
return lazyNettyServerProperties;
}
@Override
public LazyNettyServerProperties toLazyNettyServerProperties(LazyNettyServerPropertiesUpdateCommand lazyNettyServerPropertiesUpdateCommand) {
if ( lazyNettyServerPropertiesUpdateCommand == null ) {
return null;
}
LazyNettyServerProperties lazyNettyServerProperties = new LazyNettyServerProperties();
lazyNettyServerProperties.setClientId( lazyNettyServerPropertiesUpdateCommand.getClientId() );
lazyNettyServerProperties.setConnectStatus( lazyNettyServerPropertiesUpdateCommand.getConnectStatus() );
lazyNettyServerProperties.setCreateTime( lazyNettyServerPropertiesUpdateCommand.getCreateTime() );
lazyNettyServerProperties.setInetHost( lazyNettyServerPropertiesUpdateCommand.getInetHost() );
lazyNettyServerProperties.setInetPort( lazyNettyServerPropertiesUpdateCommand.getInetPort() );
lazyNettyServerProperties.setType( lazyNettyServerPropertiesUpdateCommand.getType() );
lazyNettyServerProperties.setAppKey( lazyNettyServerPropertiesUpdateCommand.getAppKey() );
lazyNettyServerProperties.setAppSecret( lazyNettyServerPropertiesUpdateCommand.getAppSecret() );
lazyNettyServerProperties.setUpdateTime( lazyNettyServerPropertiesUpdateCommand.getUpdateTime() );
return lazyNettyServerProperties;
}
@Override
public LazyNettyServerProperties toLazyNettyServerProperties(LazyNettyServerPropertiesQueryOneCommand lazyNettyServerPropertiesQueryOneCommand) {
if ( lazyNettyServerPropertiesQueryOneCommand == null ) {
return null;
}
LazyNettyServerProperties lazyNettyServerProperties = new LazyNettyServerProperties();
lazyNettyServerProperties.setClientId( lazyNettyServerPropertiesQueryOneCommand.getClientId() );
lazyNettyServerProperties.setConnectStatus( lazyNettyServerPropertiesQueryOneCommand.getConnectStatus() );
lazyNettyServerProperties.setCreateTime( lazyNettyServerPropertiesQueryOneCommand.getCreateTime() );
lazyNettyServerProperties.setInetHost( lazyNettyServerPropertiesQueryOneCommand.getInetHost() );
lazyNettyServerProperties.setInetPort( lazyNettyServerPropertiesQueryOneCommand.getInetPort() );
lazyNettyServerProperties.setType( lazyNettyServerPropertiesQueryOneCommand.getType() );
lazyNettyServerProperties.setAppKey( lazyNettyServerPropertiesQueryOneCommand.getAppKey() );
lazyNettyServerProperties.setAppSecret( lazyNettyServerPropertiesQueryOneCommand.getAppSecret() );
lazyNettyServerProperties.setUpdateTime( lazyNettyServerPropertiesQueryOneCommand.getUpdateTime() );
return lazyNettyServerProperties;
}
@Override
public LazyNettyServerProperties toLazyNettyServerProperties(LazyNettyServerPropertiesQueryListCommand lazyNettyServerPropertiesQueryListCommand) {
if ( lazyNettyServerPropertiesQueryListCommand == null ) {
return null;
}
LazyNettyServerProperties lazyNettyServerProperties = new LazyNettyServerProperties();
lazyNettyServerProperties.setClientId( lazyNettyServerPropertiesQueryListCommand.getClientId() );
lazyNettyServerProperties.setConnectStatus( lazyNettyServerPropertiesQueryListCommand.getConnectStatus() );
lazyNettyServerProperties.setCreateTime( lazyNettyServerPropertiesQueryListCommand.getCreateTime() );
lazyNettyServerProperties.setInetHost( lazyNettyServerPropertiesQueryListCommand.getInetHost() );
lazyNettyServerProperties.setInetPort( lazyNettyServerPropertiesQueryListCommand.getInetPort() );
lazyNettyServerProperties.setType( lazyNettyServerPropertiesQueryListCommand.getType() );
lazyNettyServerProperties.setAppKey( lazyNettyServerPropertiesQueryListCommand.getAppKey() );
lazyNettyServerProperties.setAppSecret( lazyNettyServerPropertiesQueryListCommand.getAppSecret() );
lazyNettyServerProperties.setUpdateTime( lazyNettyServerPropertiesQueryListCommand.getUpdateTime() );
return lazyNettyServerProperties;
}
@Override
public LazyNettyServerProperties toLazyNettyServerProperties(LazyNettyServerPropertiesRemoveCommand lazyNettyServerPropertiesRemoveCommand) {
if ( lazyNettyServerPropertiesRemoveCommand == null ) {
return null;
}
LazyNettyServerProperties lazyNettyServerProperties = new LazyNettyServerProperties();
lazyNettyServerProperties.setClientId( lazyNettyServerPropertiesRemoveCommand.getClientId() );
lazyNettyServerProperties.setConnectStatus( lazyNettyServerPropertiesRemoveCommand.getConnectStatus() );
lazyNettyServerProperties.setCreateTime( lazyNettyServerPropertiesRemoveCommand.getCreateTime() );
lazyNettyServerProperties.setInetHost( lazyNettyServerPropertiesRemoveCommand.getInetHost() );
lazyNettyServerProperties.setInetPort( lazyNettyServerPropertiesRemoveCommand.getInetPort() );
lazyNettyServerProperties.setType( lazyNettyServerPropertiesRemoveCommand.getType() );
lazyNettyServerProperties.setAppKey( lazyNettyServerPropertiesRemoveCommand.getAppKey() );
lazyNettyServerProperties.setAppSecret( lazyNettyServerPropertiesRemoveCommand.getAppSecret() );
lazyNettyServerProperties.setUpdateTime( lazyNettyServerPropertiesRemoveCommand.getUpdateTime() );
return lazyNettyServerProperties;
}
@Override
public LazyNettyServerPropertiesDTO fromLazyNettyServerProperties(LazyNettyServerProperties lazyNettyServerProperties) {
if ( lazyNettyServerProperties == null ) {
return null;
}
LazyNettyServerPropertiesDTO lazyNettyServerPropertiesDTO = new LazyNettyServerPropertiesDTO();
lazyNettyServerPropertiesDTO.setClientId( lazyNettyServerProperties.getClientId() );
lazyNettyServerPropertiesDTO.setConnectStatus( lazyNettyServerProperties.getConnectStatus() );
lazyNettyServerPropertiesDTO.setCreateTime( lazyNettyServerProperties.getCreateTime() );
lazyNettyServerPropertiesDTO.setInetHost( lazyNettyServerProperties.getInetHost() );
lazyNettyServerPropertiesDTO.setInetPort( lazyNettyServerProperties.getInetPort() );
lazyNettyServerPropertiesDTO.setType( lazyNettyServerProperties.getType() );
lazyNettyServerPropertiesDTO.setAppKey( lazyNettyServerProperties.getAppKey() );
lazyNettyServerPropertiesDTO.setAppSecret( lazyNettyServerProperties.getAppSecret() );
lazyNettyServerPropertiesDTO.setUpdateTime( lazyNettyServerProperties.getUpdateTime() );
return lazyNettyServerPropertiesDTO;
}
}

View File

@ -0,0 +1,57 @@
package org.framework.lazy.cloud.network.heartbeat.client.infrastructure.converter;
import javax.annotation.processing.Generated;
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;
@Generated(
value = "org.mapstruct.ap.MappingProcessor",
date = "2025-06-03T16:10:52+0800",
comments = "version: 1.6.3, compiler: javac, environment: Java 21.0.2 (Oracle Corporation)"
)
public class LazyNettyServerPropertiesConverterImpl implements LazyNettyServerPropertiesConverter {
@Override
public LazyNettyServerProperties toLazyNettyServerProperties(LazyNettyServerPropertiesDO lazyNettyServerPropertiesDO) {
if ( lazyNettyServerPropertiesDO == null ) {
return null;
}
LazyNettyServerProperties lazyNettyServerProperties = new LazyNettyServerProperties();
lazyNettyServerProperties.setClientId( lazyNettyServerPropertiesDO.getClientId() );
lazyNettyServerProperties.setConnectStatus( lazyNettyServerPropertiesDO.getConnectStatus() );
lazyNettyServerProperties.setCreateTime( lazyNettyServerPropertiesDO.getCreateTime() );
lazyNettyServerProperties.setInetHost( lazyNettyServerPropertiesDO.getInetHost() );
lazyNettyServerProperties.setInetPort( lazyNettyServerPropertiesDO.getInetPort() );
lazyNettyServerProperties.setType( lazyNettyServerPropertiesDO.getType() );
lazyNettyServerProperties.setProtocolType( lazyNettyServerPropertiesDO.getProtocolType() );
lazyNettyServerProperties.setAppKey( lazyNettyServerPropertiesDO.getAppKey() );
lazyNettyServerProperties.setAppSecret( lazyNettyServerPropertiesDO.getAppSecret() );
lazyNettyServerProperties.setUpdateTime( lazyNettyServerPropertiesDO.getUpdateTime() );
return lazyNettyServerProperties;
}
@Override
public LazyNettyServerPropertiesDO fromLazyNettyServerProperties(LazyNettyServerProperties lazyNettyServerProperties) {
if ( lazyNettyServerProperties == null ) {
return null;
}
LazyNettyServerPropertiesDO lazyNettyServerPropertiesDO = new LazyNettyServerPropertiesDO();
lazyNettyServerPropertiesDO.setClientId( lazyNettyServerProperties.getClientId() );
lazyNettyServerPropertiesDO.setConnectStatus( lazyNettyServerProperties.getConnectStatus() );
lazyNettyServerPropertiesDO.setCreateTime( lazyNettyServerProperties.getCreateTime() );
lazyNettyServerPropertiesDO.setInetHost( lazyNettyServerProperties.getInetHost() );
lazyNettyServerPropertiesDO.setInetPort( lazyNettyServerProperties.getInetPort() );
lazyNettyServerPropertiesDO.setAppKey( lazyNettyServerProperties.getAppKey() );
lazyNettyServerPropertiesDO.setAppSecret( lazyNettyServerProperties.getAppSecret() );
lazyNettyServerPropertiesDO.setType( lazyNettyServerProperties.getType() );
lazyNettyServerPropertiesDO.setProtocolType( lazyNettyServerProperties.getProtocolType() );
lazyNettyServerPropertiesDO.setUpdateTime( lazyNettyServerProperties.getUpdateTime() );
return lazyNettyServerPropertiesDO;
}
}

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2024/04/12 02:16 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyClusterNodeDTOAssembler {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2024/04/12 02:16 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyClusterNodeConverter {

View File

@ -13,7 +13,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/17 09:55 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyClientPermeateClientMappingDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/17 01:26 夜间
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyClientPermeatePortPoolDTOAssembler {

View File

@ -13,7 +13,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/17 09:26 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyClientPermeateServerMappingDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2025/04/05 09:00 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyClientRouteDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2024/07/12 04:29 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyClientStateRecordDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/28 01:56 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyClientTokenBucketDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2025/05/06 05:00 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyClientVirtualRouteDTOAssembler {

View File

@ -14,7 +14,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2023/12/29 05:21 下午
* @see DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyServerPermeateClientMappingDTOAssembler {

View File

@ -12,7 +12,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/17 01:35 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyServerPermeateServerMappingDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2025/04/05 09:00 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyServerRouteDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2025/05/06 05:00 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyNettyServerVirtualRouteDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2025/06/06 11:39 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyProxyFlowDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2025/06/06 11:39 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface LazyProxyPerDayFlowDTOAssembler {

View File

@ -14,7 +14,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2023/12/27 03:46 下午
* @see DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface NettyClientBlacklistDTOAssembler {

View File

@ -17,7 +17,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2023/12/27 03:46 下午
* @see DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface NettyClientStateDTOAssembler {

View File

@ -14,7 +14,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2024/01/16 02:21 下午
* @see DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface NettyServerVisitorDTOAssembler {

View File

@ -15,7 +15,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2024/01/24 05:19 下午
* @see DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface VisitorPortFlowDTOAssembler {

View File

@ -16,7 +16,7 @@ import org.mapstruct.Mapper;
* @date 2024/03/19 09:53 上午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler
**/
@LazyMapper
@Mapper
public interface VisitorPortPerDayFlowDTOAssembler {

View File

@ -12,7 +12,7 @@ import org.mapstruct.factory.Mappers;
* @date 2024/09/17 09:55 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyInternalNetworkClientPermeateClientMappingConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/17 09:26 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyInternalNetworkClientPermeateServerMappingConverter {

View File

@ -13,7 +13,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2023/12/29 05:21 下午
* @see DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyInternalNetworkPenetrationMappingConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/17 01:35 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyInternalNetworkServerPermeateServerMappingConverter {

View File

@ -14,7 +14,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2023/12/27 03:46 下午
* @see DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyClientBlacklistConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/17 01:26 夜间
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyClientPermeatePortPoolConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2025/04/05 09:00 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyClientRouteConverter {

View File

@ -13,7 +13,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2023/12/27 03:46 下午
* @see DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyClientStateConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2024/07/12 04:29 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyClientStateRecordConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2024/09/28 01:56 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyClientTokenBucketConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2025/05/06 05:00 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyClientVirtualRouteConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2025/04/05 09:00 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyServerRouteConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2025/05/06 05:00 下午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyServerVirtualRouteConverter {

View File

@ -13,7 +13,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2024/01/16 02:21 下午
* @see DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyNettyServerVisitorConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2025/06/06 11:39 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyProxyFlowConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2025/06/06 11:39 晚上
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyProxyPerDayFlowConverter {

View File

@ -13,7 +13,7 @@ import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLaz
* @date 2024/01/24 05:19 下午
* @see DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyVisitorPortFlowConverter {

View File

@ -11,7 +11,7 @@ import org.mapstruct.Mapper;
* @date 2024/03/19 09:53 上午
* @see org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter
**/
@LazyMapper
@Mapper
public interface LazyVisitorPortPerDayFlowConverter {