代码优化调整

This commit is contained in:
inrgihc
2024-07-25 22:07:05 +08:00
parent 815528b817
commit 9cba0c17a6
52 changed files with 146 additions and 505 deletions

View File

@@ -11,6 +11,7 @@ package com.gitee.dbswitch.product.dm;
import com.gitee.dbswitch.annotation.Product;
import com.gitee.dbswitch.common.type.ProductTypeEnum;
import com.gitee.dbswitch.features.DefaultProductFeatures;
import com.gitee.dbswitch.features.ProductFeatures;
import com.gitee.dbswitch.product.oracle.OracleTableManageProvider;
import com.gitee.dbswitch.provider.AbstractFactoryProvider;
@@ -29,7 +30,7 @@ public class DmFactoryProvider extends AbstractFactoryProvider {
}
public ProductFeatures getProductFeatures() {
return new DmFeatures();
return new DefaultProductFeatures();
}
@Override

View File

@@ -1,16 +0,0 @@
// Copyright tang. All rights reserved.
// https://gitee.com/inrgihc/dbswitch
//
// Use of this source code is governed by a BSD-style license
//
// Author: tang (inrgihc@126.com)
// Date : 2020/1/2
// Location: beijing , china
/////////////////////////////////////////////////////////////
package com.gitee.dbswitch.product.dm;
import com.gitee.dbswitch.features.ProductFeatures;
public class DmFeatures implements ProductFeatures {
}