Commit 3b767978 authored by hongguangwu's avatar hongguangwu

MVP1.7.11-优化

parent 0aface2d
......@@ -191,9 +191,12 @@ public class ChecksUtil {
String msg = "";
if (Common.isNotNull(temp)) {
try {
msg = temp.toString().substring(0, 10);
return temp.getAsString();
} catch (Exception e) {
msg = temp.toString();
if (msg.length() > 10) {
msg = temp.toString().substring(0, 10);
}
return "创蓝云智返回异常:" + msg;
}
} else {
......
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