客户信息新增标保金额

This commit is contained in:
郭诚奇
2025-10-24 14:39:04 +08:00
parent 05554b995b
commit aa263cc75b

View File

@@ -66,7 +66,7 @@ public class EbizOperationsController {
String createTableSql = "CREATE TABLE " + tableName + " AS SELECT * FROM CUSTOMER_INFO";
statement.execute(createTableSql);
// 清空表
String cleanTableSql = "TRUNCATE TABLE TEST_USER";
String cleanTableSql = "TRUNCATE TABLE CUSTOMER_INFO";
statement.execute(cleanTableSql);
} catch (ClassNotFoundException e) {
log.error("找不到数据库驱动类: ", e);