123456789101112131415161718192021222324252627282930313233343536373839 |
- package org.dbsyncer.common.model;
- import org.dbsyncer.common.spi.ConnectorMapper;
- import org.dbsyncer.common.spi.ProxyApplicationContext;
- /**
- * @author AE86
- * @version 1.0.0
- * @date 2022/6/30 16:00
- */
- public abstract class AbstractConvertContext {
- /**
- * Spring上下文
- */
- protected ProxyApplicationContext context;
- /**
- * 目标源连接实例
- */
- protected ConnectorMapper targetConnectorMapper;
- /**
- * 目标表
- */
- protected String targetTableName;
- public ProxyApplicationContext getContext() {
- return context;
- }
- public String getTargetTableName() {
- return targetTableName;
- }
- public ConnectorMapper getTargetConnectorMapper() {
- return targetConnectorMapper;
- }
- }
|