gaozl 11 месяцев назад
Родитель
Сommit
20dc6ac727

+ 2 - 2
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/aop/UpdateDBLogAspect.java

@@ -85,7 +85,7 @@ public class UpdateDBLogAspect {
                 map.put("table_name" , tableName);
                 map.put("table_comment" , tableComment);
                 map.put("data_" , oldData);
-                String sql = SqlUtil.buildInsertSql(map,LogAopUtil.TABLE_NAME);
+                String sql = SqlUtil.buildInsertSql(map,"t_business_log");
                 try {
                     commonDao.execute(sql);
                 }catch (Exception e){
@@ -103,7 +103,7 @@ public class UpdateDBLogAspect {
             map.put("table_name" , tableName);
             map.put("table_comment" , tableComment);
             map.put("data_" , oldData);
-            String sql = SqlUtil.buildInsertSql(map,LogAopUtil.TABLE_NAME);
+            String sql = SqlUtil.buildInsertSql(map,"t_business_log");
             try {
                 commonDao.execute(sql);
             }catch (Exception e){