lisai17@sina.com 2020-10-15 14:18:32 +08:00
parent 8afc128f4d
commit 01953ff83d
1 changed files with 22 additions and 20 deletions

View File

@ -201,6 +201,7 @@ public class ModifyLogService {
} }
} }
if(!params.isEmpty()){
List<Transport> transports = Transport.dao.find("select * from transport t where t.id in(" + StrKit.join(sqlparams, ",") + ")", params.toArray()); List<Transport> transports = Transport.dao.find("select * from transport t where t.id in(" + StrKit.join(sqlparams, ",") + ")", params.toArray());
for (Record record : list) { for (Record record : list) {
@ -227,6 +228,7 @@ public class ModifyLogService {
log.error(e.getMessage(), e); log.error(e.getMessage(), e);
} }
} }
}
return page; return page;
} }