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