mirror of
https://gitee.com/wujiawei1207537021/wu-lazy-cloud-network.git
synced 2025-06-16 18:35:05 +08:00
[fix] 修复native打包与mapper不兼容问题,切换至自定义bean拷贝
This commit is contained in:
@ -7,7 +7,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.LazyNettyServerPropertiesQueryListCommand;
|
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.LazyNettyServerPropertiesQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.client.application.dto.LazyNettyServerPropertiesDTO;
|
import org.framework.lazy.cloud.network.heartbeat.client.application.dto.LazyNettyServerPropertiesDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 服务端配置信息
|
* describe 服务端配置信息
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyServerPropertiesDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/04/03 03:00 下午
|
* @date 2024/04/03 03:00 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyServerPropertiesDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyServerPropertiesDTOAssembler.class);
|
LazyNettyServerPropertiesDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyServerPropertiesDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,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.domain.model.lazy.netty.server.properties.LazyNettyServerProperties;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.client.infrastructure.entity.LazyNettyServerPropertiesDO;
|
import org.framework.lazy.cloud.network.heartbeat.client.infrastructure.entity.LazyNettyServerPropertiesDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 服务端配置信息
|
* describe 服务端配置信息
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyServerPropertiesConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/04/03 03:00 下午
|
* @date 2024/04/03 03:00 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyServerPropertiesConverter INSTANCE = Mappers.getMapper(LazyNettyServerPropertiesConverter.class);
|
LazyNettyServerPropertiesConverter INSTANCE = LazyMappers.getMapper(LazyNettyServerPropertiesConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.cluster.application.com
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.cluster.application.command.lazy.netty.cluster.node.LazyNettyClusterNodeUpdateCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.cluster.application.command.lazy.netty.cluster.node.LazyNettyClusterNodeUpdateCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.cluster.application.command.lazy.netty.cluster.node.LazyNettyClusterNodeQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.cluster.application.command.lazy.netty.cluster.node.LazyNettyClusterNodeQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.cluster.application.command.lazy.netty.cluster.node.LazyNettyClusterNodeQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.cluster.application.command.lazy.netty.cluster.node.LazyNettyClusterNodeQueryOneCommand;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 集群配置信息
|
* describe 集群配置信息
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyClusterNodeDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/04/12 02:16 下午
|
* @date 2024/04/12 02:16 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClusterNodeDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyClusterNodeDTOAssembler.class);
|
LazyNettyClusterNodeDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyClusterNodeDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.cluster.infrastructure
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.cluster.domain.model.cluster.node.LazyNettyClusterNode;
|
import org.framework.lazy.cloud.network.heartbeat.server.cluster.domain.model.cluster.node.LazyNettyClusterNode;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.cluster.infrastructure.entity.LazyNettyClusterNodeDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.cluster.infrastructure.entity.LazyNettyClusterNodeDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 集群配置信息
|
* describe 集群配置信息
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyClusterNodeConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/04/12 02:16 下午
|
* @date 2024/04/12 02:16 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClusterNodeConverter INSTANCE = Mappers.getMapper(LazyNettyClusterNodeConverter.class);
|
LazyNettyClusterNodeConverter INSTANCE = LazyMappers.getMapper(LazyNettyClusterNodeConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -4,7 +4,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.client.mapping.LazyNettyClientPermeateClientMapping;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.client.mapping.LazyNettyClientPermeateClientMapping;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.permeate.client.mapping.LazyClientPermeateClientMappingUpdateCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.permeate.client.mapping.LazyClientPermeateClientMappingUpdateCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyClientPermeateClientMappingDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyClientPermeateClientMappingDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端渗透客户端映射
|
* describe 客户端渗透客户端映射
|
||||||
@ -26,7 +26,7 @@ public interface LazyNettyClientPermeateClientMappingDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/17 09:55 晚上
|
* @date 2024/09/17 09:55 晚上
|
||||||
**/
|
**/
|
||||||
LazyNettyClientPermeateClientMappingDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyClientPermeateClientMappingDTOAssembler.class);
|
LazyNettyClientPermeateClientMappingDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyClientPermeateClientMappingDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.permeate.port.pool.LazyNettyClientPermeatePortPoolQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.permeate.port.pool.LazyNettyClientPermeatePortPoolQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.permeate.port.pool.LazyNettyClientPermeatePortPoolQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.permeate.port.pool.LazyNettyClientPermeatePortPoolQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientPermeatePortPoolDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientPermeatePortPoolDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端内网渗透端口池
|
* describe 客户端内网渗透端口池
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyClientPermeatePortPoolDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/17 01:26 夜间
|
* @date 2024/09/17 01:26 夜间
|
||||||
**/
|
**/
|
||||||
LazyNettyClientPermeatePortPoolDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyClientPermeatePortPoolDTOAssembler.class);
|
LazyNettyClientPermeatePortPoolDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyClientPermeatePortPoolDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -4,7 +4,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.server.mapping.LazyNettyClientPermeateServerMapping;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.server.mapping.LazyNettyClientPermeateServerMapping;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.permeate.server.mapping.LazyClientPermeateServerMappingQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.permeate.server.mapping.LazyClientPermeateServerMappingQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyClientPermeateServerMappingDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyClientPermeateServerMappingDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端渗透服务端映射
|
* describe 客户端渗透服务端映射
|
||||||
@ -26,7 +26,7 @@ public interface LazyNettyClientPermeateServerMappingDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/17 09:26 晚上
|
* @date 2024/09/17 09:26 晚上
|
||||||
**/
|
**/
|
||||||
LazyNettyClientPermeateServerMappingDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyClientPermeateServerMappingDTOAssembler.class);
|
LazyNettyClientPermeateServerMappingDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyClientPermeateServerMappingDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.route.LazyNettyClientRouteQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.route.LazyNettyClientRouteQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.route.LazyNettyClientRouteQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.route.LazyNettyClientRouteQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientRouteDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientRouteDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端代理路由规则
|
* describe 客户端代理路由规则
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyClientRouteDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/04/05 09:00 晚上
|
* @date 2025/04/05 09:00 晚上
|
||||||
**/
|
**/
|
||||||
LazyNettyClientRouteDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyClientRouteDTOAssembler.class);
|
LazyNettyClientRouteDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyClientRouteDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.state.record.LazyNettyClientStateRecordQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.state.record.LazyNettyClientStateRecordQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.state.record.LazyNettyClientStateRecordQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.state.record.LazyNettyClientStateRecordQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientStateRecordDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientStateRecordDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端状态变更记录
|
* describe 客户端状态变更记录
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyClientStateRecordDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/07/12 04:29 下午
|
* @date 2024/07/12 04:29 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClientStateRecordDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyClientStateRecordDTOAssembler.class);
|
LazyNettyClientStateRecordDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyClientStateRecordDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.token.bucket.LazyNettyClientTokenBucketQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.token.bucket.LazyNettyClientTokenBucketQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.token.bucket.LazyNettyClientTokenBucketQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.token.bucket.LazyNettyClientTokenBucketQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientTokenBucketDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientTokenBucketDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端令牌桶
|
* describe 客户端令牌桶
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyClientTokenBucketDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/28 01:56 下午
|
* @date 2024/09/28 01:56 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClientTokenBucketDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyClientTokenBucketDTOAssembler.class);
|
LazyNettyClientTokenBucketDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyClientTokenBucketDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.virtual.route.LazyNettyClientVirtualRouteQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.virtual.route.LazyNettyClientVirtualRouteQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.virtual.route.LazyNettyClientVirtualRouteQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.client.virtual.route.LazyNettyClientVirtualRouteQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientVirtualRouteDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientVirtualRouteDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端虚拟路由管理
|
* describe 客户端虚拟路由管理
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyClientVirtualRouteDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/05/06 05:00 下午
|
* @date 2025/05/06 05:00 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClientVirtualRouteDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyClientVirtualRouteDTOAssembler.class);
|
LazyNettyClientVirtualRouteDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyClientVirtualRouteDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -4,7 +4,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyServerPermeateClientMappingDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyServerPermeateClientMappingDTO;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.client.mapping.LazyNettyServerPermeateClientMapping;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.client.mapping.LazyNettyServerPermeateClientMapping;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyServerPermeateClientMappingDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2023/12/29 05:21 下午
|
* @date 2023/12/29 05:21 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyServerPermeateClientMappingDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyServerPermeateClientMappingDTOAssembler.class);
|
LazyNettyServerPermeateClientMappingDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyServerPermeateClientMappingDTOAssembler.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
|
@ -3,7 +3,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.application
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.permeate.server.mapping.*;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.permeate.server.mapping.*;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyServerPermeateServerMappingDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyServerPermeateServerMappingDTO;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.server.mapping.LazyNettyServerPermeateServerMapping;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.server.mapping.LazyNettyServerPermeateServerMapping;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 服务端网络渗透映射
|
* describe 服务端网络渗透映射
|
||||||
@ -25,7 +25,7 @@ public interface LazyNettyServerPermeateServerMappingDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/17 01:35 下午
|
* @date 2024/09/17 01:35 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyServerPermeateServerMappingDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyServerPermeateServerMappingDTOAssembler.class);
|
LazyNettyServerPermeateServerMappingDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyServerPermeateServerMappingDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.route.LazyNettyServerRouteQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.route.LazyNettyServerRouteQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.route.LazyNettyServerRouteQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.route.LazyNettyServerRouteQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyServerRouteDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyServerRouteDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 服务端路由
|
* describe 服务端路由
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyServerRouteDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/04/05 09:00 晚上
|
* @date 2025/04/05 09:00 晚上
|
||||||
**/
|
**/
|
||||||
LazyNettyServerRouteDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyServerRouteDTOAssembler.class);
|
LazyNettyServerRouteDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyServerRouteDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.virtual.route.LazyNettyServerVirtualRouteQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.virtual.route.LazyNettyServerVirtualRouteQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.virtual.route.LazyNettyServerVirtualRouteQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.netty.server.virtual.route.LazyNettyServerVirtualRouteQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyServerVirtualRouteDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyServerVirtualRouteDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 服务端虚拟路由管理
|
* describe 服务端虚拟路由管理
|
||||||
@ -29,7 +29,7 @@ public interface LazyNettyServerVirtualRouteDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/05/06 05:00 下午
|
* @date 2025/05/06 05:00 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyServerVirtualRouteDTOAssembler INSTANCE = Mappers.getMapper(LazyNettyServerVirtualRouteDTOAssembler.class);
|
LazyNettyServerVirtualRouteDTOAssembler INSTANCE = LazyMappers.getMapper(LazyNettyServerVirtualRouteDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.proxy.flow.LazyProxyFlowQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.proxy.flow.LazyProxyFlowQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.proxy.flow.LazyProxyFlowQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.proxy.flow.LazyProxyFlowQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyProxyFlowDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyProxyFlowDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 代理流量
|
* describe 代理流量
|
||||||
@ -29,7 +29,7 @@ public interface LazyProxyFlowDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/06/06 11:39 晚上
|
* @date 2025/06/06 11:39 晚上
|
||||||
**/
|
**/
|
||||||
LazyProxyFlowDTOAssembler INSTANCE = Mappers.getMapper(LazyProxyFlowDTOAssembler.class);
|
LazyProxyFlowDTOAssembler INSTANCE = LazyMappers.getMapper(LazyProxyFlowDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.proxy.per.day.flow.LazyProxyPerDayFlowQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.proxy.per.day.flow.LazyProxyPerDayFlowQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.proxy.per.day.flow.LazyProxyPerDayFlowQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.lazy.proxy.per.day.flow.LazyProxyPerDayFlowQueryOneCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyProxyPerDayFlowDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyProxyPerDayFlowDTO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 每日统计代理流量
|
* describe 每日统计代理流量
|
||||||
@ -29,7 +29,7 @@ public interface LazyProxyPerDayFlowDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/06/06 11:39 晚上
|
* @date 2025/06/06 11:39 晚上
|
||||||
**/
|
**/
|
||||||
LazyProxyPerDayFlowDTOAssembler INSTANCE = Mappers.getMapper(LazyProxyPerDayFlowDTOAssembler.class);
|
LazyProxyPerDayFlowDTOAssembler INSTANCE = LazyMappers.getMapper(LazyProxyPerDayFlowDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -4,7 +4,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientBlacklistDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientBlacklistDTO;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.blacklist.LazyNettyClientBlacklist;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.blacklist.LazyNettyClientBlacklist;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -24,7 +24,7 @@ public interface NettyClientBlacklistDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2023/12/27 03:46 下午
|
* @date 2023/12/27 03:46 下午
|
||||||
**/
|
**/
|
||||||
NettyClientBlacklistDTOAssembler INSTANCE = Mappers.getMapper(NettyClientBlacklistDTOAssembler.class);
|
NettyClientBlacklistDTOAssembler INSTANCE = LazyMappers.getMapper(NettyClientBlacklistDTOAssembler.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
|
@ -6,7 +6,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientStateDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyClientStateDTO;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.state.LazyNettyClientStateGroupByClient;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.state.LazyNettyClientStateGroupByClient;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
||||||
|
|
||||||
|
|
||||||
@ -27,7 +27,7 @@ public interface NettyClientStateDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2023/12/27 03:46 下午
|
* @date 2023/12/27 03:46 下午
|
||||||
**/
|
**/
|
||||||
NettyClientStateDTOAssembler INSTANCE = Mappers.getMapper(NettyClientStateDTOAssembler.class);
|
NettyClientStateDTOAssembler INSTANCE = LazyMappers.getMapper(NettyClientStateDTOAssembler.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
|
@ -4,7 +4,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyServerVisitorDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyNettyServerVisitorDTO;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.port.pool.LazyNettyServerVisitor;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.port.pool.LazyNettyServerVisitor;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -24,7 +24,7 @@ public interface NettyServerVisitorDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/01/16 02:21 下午
|
* @date 2024/01/16 02:21 下午
|
||||||
**/
|
**/
|
||||||
NettyServerVisitorDTOAssembler INSTANCE = Mappers.getMapper(NettyServerVisitorDTOAssembler.class);
|
NettyServerVisitorDTOAssembler INSTANCE = LazyMappers.getMapper(NettyServerVisitorDTOAssembler.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
|
@ -5,7 +5,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.visitor.flow.*;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.visitor.flow.*;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyVisitorPortFlowDTO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.dto.LazyVisitorPortFlowDTO;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyAssembler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -25,7 +25,7 @@ public interface VisitorPortFlowDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/01/24 05:19 下午
|
* @date 2024/01/24 05:19 下午
|
||||||
**/
|
**/
|
||||||
VisitorPortFlowDTOAssembler INSTANCE = Mappers.getMapper(VisitorPortFlowDTOAssembler.class);
|
VisitorPortFlowDTOAssembler INSTANCE = LazyMappers.getMapper(VisitorPortFlowDTOAssembler.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
|
@ -7,7 +7,7 @@ import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.visitor.port.per.day.flow.LazyVisitorPortPerDayFlowUpdateCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.visitor.port.per.day.flow.LazyVisitorPortPerDayFlowUpdateCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.visitor.port.per.day.flow.LazyVisitorPortPerDayFlowQueryListCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.visitor.port.per.day.flow.LazyVisitorPortPerDayFlowQueryListCommand;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.visitor.port.per.day.flow.LazyVisitorPortPerDayFlowQueryOneCommand;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.application.command.visitor.port.per.day.flow.LazyVisitorPortPerDayFlowQueryOneCommand;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 每日统计流量
|
* describe 每日统计流量
|
||||||
@ -29,7 +29,7 @@ public interface VisitorPortPerDayFlowDTOAssembler {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/03/19 09:53 上午
|
* @date 2024/03/19 09:53 上午
|
||||||
**/
|
**/
|
||||||
VisitorPortPerDayFlowDTOAssembler INSTANCE = Mappers.getMapper(VisitorPortPerDayFlowDTOAssembler.class);
|
VisitorPortPerDayFlowDTOAssembler INSTANCE = LazyMappers.getMapper(VisitorPortPerDayFlowDTOAssembler.class);
|
||||||
/**
|
/**
|
||||||
* describe 应用层存储入参转换成 领域对象
|
* describe 应用层存储入参转换成 领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,8 +2,9 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.client.mapping.LazyNettyClientPermeateClientMapping;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.client.mapping.LazyNettyClientPermeateClientMapping;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientPermeateClientMappingDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientPermeateClientMappingDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 客户端渗透客户端映射
|
* describe 客户端渗透客户端映射
|
||||||
*
|
*
|
||||||
@ -24,7 +25,7 @@ public interface LazyInternalNetworkClientPermeateClientMappingConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/17 09:55 晚上
|
* @date 2024/09/17 09:55 晚上
|
||||||
**/
|
**/
|
||||||
LazyInternalNetworkClientPermeateClientMappingConverter INSTANCE = Mappers.getMapper(LazyInternalNetworkClientPermeateClientMappingConverter.class);
|
LazyInternalNetworkClientPermeateClientMappingConverter INSTANCE = LazyMappers.getMapper(LazyInternalNetworkClientPermeateClientMappingConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.server.mapping.LazyNettyClientPermeateServerMapping;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.server.mapping.LazyNettyClientPermeateServerMapping;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientPermeateServerMappingDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientPermeateServerMappingDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端渗透服务端映射
|
* describe 客户端渗透服务端映射
|
||||||
@ -24,7 +24,7 @@ public interface LazyInternalNetworkClientPermeateServerMappingConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/17 09:26 晚上
|
* @date 2024/09/17 09:26 晚上
|
||||||
**/
|
**/
|
||||||
LazyInternalNetworkClientPermeateServerMappingConverter INSTANCE = Mappers.getMapper(LazyInternalNetworkClientPermeateServerMappingConverter.class);
|
LazyInternalNetworkClientPermeateServerMappingConverter INSTANCE = LazyMappers.getMapper(LazyInternalNetworkClientPermeateServerMappingConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -3,7 +3,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.client.mapping.LazyNettyServerPermeateClientMapping;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.client.mapping.LazyNettyServerPermeateClientMapping;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerPermeateClientMappingDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerPermeateClientMappingDO;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -23,7 +23,7 @@ public interface LazyInternalNetworkPenetrationMappingConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2023/12/29 05:21 下午
|
* @date 2023/12/29 05:21 下午
|
||||||
**/
|
**/
|
||||||
LazyInternalNetworkPenetrationMappingConverter INSTANCE = Mappers.getMapper(LazyInternalNetworkPenetrationMappingConverter.class);
|
LazyInternalNetworkPenetrationMappingConverter INSTANCE = LazyMappers.getMapper(LazyInternalNetworkPenetrationMappingConverter.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.server.mapping.LazyNettyServerPermeateServerMapping;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.server.mapping.LazyNettyServerPermeateServerMapping;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerPermeateServerMappingDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerPermeateServerMappingDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 服务端网络渗透映射
|
* describe 服务端网络渗透映射
|
||||||
@ -24,7 +24,7 @@ public interface LazyInternalNetworkServerPermeateServerMappingConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/17 01:35 下午
|
* @date 2024/09/17 01:35 下午
|
||||||
**/
|
**/
|
||||||
LazyInternalNetworkServerPermeateServerMappingConverter INSTANCE = Mappers.getMapper(LazyInternalNetworkServerPermeateServerMappingConverter.class);
|
LazyInternalNetworkServerPermeateServerMappingConverter INSTANCE = LazyMappers.getMapper(LazyInternalNetworkServerPermeateServerMappingConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -4,7 +4,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.blacklist.LazyNettyClientBlacklist;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.blacklist.LazyNettyClientBlacklist;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientBlacklistDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientBlacklistDO;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyClientBlacklistConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2023/12/27 03:46 下午
|
* @date 2023/12/27 03:46 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClientBlacklistConverter INSTANCE = Mappers.getMapper(LazyNettyClientBlacklistConverter.class);
|
LazyNettyClientBlacklistConverter INSTANCE = LazyMappers.getMapper(LazyNettyClientBlacklistConverter.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.port.pool.LazyNettyClientPermeatePortPool;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.permeate.port.pool.LazyNettyClientPermeatePortPool;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientPermeatePortPoolDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientPermeatePortPoolDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端内网渗透端口池
|
* describe 客户端内网渗透端口池
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyClientPermeatePortPoolConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/17 01:26 夜间
|
* @date 2024/09/17 01:26 夜间
|
||||||
**/
|
**/
|
||||||
LazyNettyClientPermeatePortPoolConverter INSTANCE = Mappers.getMapper(LazyNettyClientPermeatePortPoolConverter.class);
|
LazyNettyClientPermeatePortPoolConverter INSTANCE = LazyMappers.getMapper(LazyNettyClientPermeatePortPoolConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.route.LazyNettyClientRoute;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.route.LazyNettyClientRoute;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientRouteDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientRouteDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端代理路由规则
|
* describe 客户端代理路由规则
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyClientRouteConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/04/05 09:00 晚上
|
* @date 2025/04/05 09:00 晚上
|
||||||
**/
|
**/
|
||||||
LazyNettyClientRouteConverter INSTANCE = Mappers.getMapper(LazyNettyClientRouteConverter.class);
|
LazyNettyClientRouteConverter INSTANCE = LazyMappers.getMapper(LazyNettyClientRouteConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -3,7 +3,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.state.LazyNettyClientState;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.state.LazyNettyClientState;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientStateDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientStateDO;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -23,7 +23,7 @@ public interface LazyNettyClientStateConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2023/12/27 03:46 下午
|
* @date 2023/12/27 03:46 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClientStateConverter INSTANCE = Mappers.getMapper(LazyNettyClientStateConverter.class);
|
LazyNettyClientStateConverter INSTANCE = LazyMappers.getMapper(LazyNettyClientStateConverter.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.state.record.LazyNettyClientStateRecord;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.state.record.LazyNettyClientStateRecord;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientStateRecordDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientStateRecordDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端状态变更记录
|
* describe 客户端状态变更记录
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyClientStateRecordConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/07/12 04:29 下午
|
* @date 2024/07/12 04:29 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClientStateRecordConverter INSTANCE = Mappers.getMapper(LazyNettyClientStateRecordConverter.class);
|
LazyNettyClientStateRecordConverter INSTANCE = LazyMappers.getMapper(LazyNettyClientStateRecordConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.token.bucket.LazyNettyClientTokenBucket;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.token.bucket.LazyNettyClientTokenBucket;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientTokenBucketDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientTokenBucketDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端令牌桶
|
* describe 客户端令牌桶
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyClientTokenBucketConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/09/28 01:56 下午
|
* @date 2024/09/28 01:56 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClientTokenBucketConverter INSTANCE = Mappers.getMapper(LazyNettyClientTokenBucketConverter.class);
|
LazyNettyClientTokenBucketConverter INSTANCE = LazyMappers.getMapper(LazyNettyClientTokenBucketConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.virtual.route.LazyNettyClientVirtualRoute;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.client.virtual.route.LazyNettyClientVirtualRoute;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientVirtualRouteDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyClientVirtualRouteDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 客户端虚拟路由管理
|
* describe 客户端虚拟路由管理
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyClientVirtualRouteConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/05/06 05:00 下午
|
* @date 2025/05/06 05:00 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyClientVirtualRouteConverter INSTANCE = Mappers.getMapper(LazyNettyClientVirtualRouteConverter.class);
|
LazyNettyClientVirtualRouteConverter INSTANCE = LazyMappers.getMapper(LazyNettyClientVirtualRouteConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.route.LazyNettyServerRoute;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.route.LazyNettyServerRoute;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerRouteDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerRouteDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 服务端路由
|
* describe 服务端路由
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyServerRouteConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/04/05 09:00 晚上
|
* @date 2025/04/05 09:00 晚上
|
||||||
**/
|
**/
|
||||||
LazyNettyServerRouteConverter INSTANCE = Mappers.getMapper(LazyNettyServerRouteConverter.class);
|
LazyNettyServerRouteConverter INSTANCE = LazyMappers.getMapper(LazyNettyServerRouteConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.virtual.route.LazyNettyServerVirtualRoute;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.virtual.route.LazyNettyServerVirtualRoute;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerVirtualRouteDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerVirtualRouteDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 服务端虚拟路由管理
|
* describe 服务端虚拟路由管理
|
||||||
@ -24,7 +24,7 @@ public interface LazyNettyServerVirtualRouteConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/05/06 05:00 下午
|
* @date 2025/05/06 05:00 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyServerVirtualRouteConverter INSTANCE = Mappers.getMapper(LazyNettyServerVirtualRouteConverter.class);
|
LazyNettyServerVirtualRouteConverter INSTANCE = LazyMappers.getMapper(LazyNettyServerVirtualRouteConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -3,7 +3,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.port.pool.LazyNettyServerVisitor;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.netty.server.permeate.port.pool.LazyNettyServerVisitor;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerPermeatePortPoolDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyNettyServerPermeatePortPoolDO;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -23,7 +23,7 @@ public interface LazyNettyServerVisitorConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/01/16 02:21 下午
|
* @date 2024/01/16 02:21 下午
|
||||||
**/
|
**/
|
||||||
LazyNettyServerVisitorConverter INSTANCE = Mappers.getMapper(LazyNettyServerVisitorConverter.class);
|
LazyNettyServerVisitorConverter INSTANCE = LazyMappers.getMapper(LazyNettyServerVisitorConverter.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.proxy.flow.LazyProxyFlow;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.proxy.flow.LazyProxyFlow;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyProxyFlowDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyProxyFlowDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 代理流量
|
* describe 代理流量
|
||||||
@ -24,7 +24,7 @@ public interface LazyProxyFlowConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/06/06 11:39 晚上
|
* @date 2025/06/06 11:39 晚上
|
||||||
**/
|
**/
|
||||||
LazyProxyFlowConverter INSTANCE = Mappers.getMapper(LazyProxyFlowConverter.class);
|
LazyProxyFlowConverter INSTANCE = LazyMappers.getMapper(LazyProxyFlowConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.proxy.per.day.flow.LazyProxyPerDayFlow;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.proxy.per.day.flow.LazyProxyPerDayFlow;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyProxyPerDayFlowDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyProxyPerDayFlowDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 每日统计代理流量
|
* describe 每日统计代理流量
|
||||||
@ -24,7 +24,7 @@ public interface LazyProxyPerDayFlowConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2025/06/06 11:39 晚上
|
* @date 2025/06/06 11:39 晚上
|
||||||
**/
|
**/
|
||||||
LazyProxyPerDayFlowConverter INSTANCE = Mappers.getMapper(LazyProxyPerDayFlowConverter.class);
|
LazyProxyPerDayFlowConverter INSTANCE = LazyMappers.getMapper(LazyProxyPerDayFlowConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
@ -3,7 +3,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.visitor.flow.LazyVisitorPortFlow;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.visitor.flow.LazyVisitorPortFlow;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyVisitorPortFlowDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyVisitorPortFlowDO;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
import org.wu.framework.lazy.orm.core.persistence.reverse.lazy.ddd.DefaultDDDLazyInfrastructureConverter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -23,7 +23,7 @@ public interface LazyVisitorPortFlowConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/01/24 05:19 下午
|
* @date 2024/01/24 05:19 下午
|
||||||
**/
|
**/
|
||||||
LazyVisitorPortFlowConverter INSTANCE = Mappers.getMapper(LazyVisitorPortFlowConverter.class);
|
LazyVisitorPortFlowConverter INSTANCE = LazyMappers.getMapper(LazyVisitorPortFlowConverter.class);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
|
@ -2,7 +2,7 @@ package org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastruct
|
|||||||
|
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.visitor.port.per.day.flow.LazyVisitorPortPerDayFlow;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.domain.model.lazy.visitor.port.per.day.flow.LazyVisitorPortPerDayFlow;
|
||||||
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyVisitorPortPerDayFlowDO;
|
import org.framework.lazy.cloud.network.heartbeat.server.standalone.infrastructure.entity.LazyVisitorPortPerDayFlowDO;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.wu.framework.core.mapper.LazyMappers;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
/**
|
/**
|
||||||
* describe 每日统计流量
|
* describe 每日统计流量
|
||||||
@ -24,7 +24,7 @@ public interface LazyVisitorPortPerDayFlowConverter {
|
|||||||
* @author Jia wei Wu
|
* @author Jia wei Wu
|
||||||
* @date 2024/03/19 09:53 上午
|
* @date 2024/03/19 09:53 上午
|
||||||
**/
|
**/
|
||||||
LazyVisitorPortPerDayFlowConverter INSTANCE = Mappers.getMapper(LazyVisitorPortPerDayFlowConverter.class);
|
LazyVisitorPortPerDayFlowConverter INSTANCE = LazyMappers.getMapper(LazyVisitorPortPerDayFlowConverter.class);
|
||||||
/**
|
/**
|
||||||
* describe 实体对象 转换成领域对象
|
* describe 实体对象 转换成领域对象
|
||||||
*
|
*
|
||||||
|
Reference in New Issue
Block a user