Commit eb31fced by hzc

int换long

parent d3e55fcc
...@@ -154,7 +154,7 @@ public class BaseIndDefService { ...@@ -154,7 +154,7 @@ public class BaseIndDefService {
//防止null异常 //防止null异常
if(StringUtils.isNotBlank(maxId)&&StringUtils.isNotBlank(auditId)){ if(StringUtils.isNotBlank(maxId)&&StringUtils.isNotBlank(auditId)){
if (Integer.parseInt(auditId)>Integer.parseInt(maxId)){ if (Long.valueOf(auditId)>Long.valueOf(maxId)){
maxId = auditId; maxId = auditId;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment