From f6b61a485501f326debe52d77ea65d87fb34b37f Mon Sep 17 00:00:00 2001 From: 田源 <tianyuan@vci-tech.com> Date: 星期三, 05 三月 2025 17:57:09 +0800 Subject: [PATCH] 完善集成日志查询 --- 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,47 +88,37 @@ 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 -- Gitblit v1.9.3