Explorar el Código

[task-4360]日志数据解析为SQL语句

gaozl hace 11 meses
padre
commit
7857654fc1

+ 0 - 3
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/business/service/impl/AuditServiceImpl.java

@@ -338,9 +338,6 @@ public class AuditServiceImpl implements AuditService {
             for (int i = 0; i < jsonArray.size(); i++) {
                 JSONObject jsonObject = jsonArray.getJSONObject(i);
                 String tableName = jsonObject.getStr("table_name");
-                if(BeanUtils.isEmpty(tableName)){
-                    continue;
-                }
                 String id = jsonObject.getStr("id_");
                 String sql2 = "select id_ from "+tableName+" where id_ ='"+id+"'";
                 Map<String,Object> data = commonDao.queryOne(sql2);