From d8f51c40544ae278095e991ed00ec297842d4332 Mon Sep 17 00:00:00 2001
From: 田源 <lastanimals@163.com>
Date: 星期日, 29 九月 2024 11:01:55 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'
---
Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/processor/dll/DllMapperProcessor.java | 10 ----------
1 files changed, 0 insertions(+), 10 deletions(-)
diff --git a/Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/processor/dll/DllMapperProcessor.java b/Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/processor/dll/DllMapperProcessor.java
index e23f3d3..7e4ee9d 100644
--- a/Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/processor/dll/DllMapperProcessor.java
+++ b/Source/UBCS/ubcs-service/ubcs-ddl/src/main/java/com/vci/ubcs/ddl/processor/dll/DllMapperProcessor.java
@@ -88,48 +88,38 @@
return mapper.createViewBySql(viewCreateSql);
}
-
public int createTableBySql(String tableName, String attributeSql) {
return mapper.createTableBySql(tableName, attributeSql);
}
-
public int commentTable(String tableName, String comment) {
return mapper.commentTable(tableName, comment);
}
-
public int commentColumnTable(String tableName, String columnName, String comment) {
return mapper.commentColumnTable(tableName, columnName, comment);
}
-
public int modifyTableBySql(String tableName, String attributeSql) {
return mapper.modifyTableBySql(tableName, attributeSql);
}
-
public int addColumn2TableBySql(String tableName, String attributeSql) {
return mapper.addColumn2TableBySql(tableName, attributeSql);
}
-
public int dropTable(String tableName) {
return mapper.dropTable(tableName);
}
-
public int checkTableExist(String tableName) {
return mapper.checkTableExist(tableName);
}
-
public int countAll(String tableName) {
return mapper.countAll(tableName);
}
-
-
/**
* 鑾峰彇瀛楁鍒涘缓sql
* @param fieldType VT瀛楁绫诲瀷
--
Gitblit v1.10.0