Commit 0319a6a6 authored by hongguangwu's avatar hongguangwu

MVP1.7.15-mxzt要计算

parent 80875833
......@@ -668,6 +668,7 @@ public class SocialFriendConfig {
JSONObject blxmjglb;
String zt;
String cwxx;
String mxzt;
for (int i = 0; i < ryywbljglbArr.size(); i++) {
ryywbljglb = (JSONObject) ryywbljglbArr.get(i);
result = new FriendResult();
......@@ -689,6 +690,16 @@ public class SocialFriendConfig {
if (Common.isNotNull(cwxx) && cwxx.length() > 100) {
cwxx = cwxx.substring(0, 100);
}
mxzt = blxmjglb.getString("mxzt");
if (Common.isNotNull(mxzt)) {
if (cwxx.length() > 70) {
cwxx = cwxx.substring(0, 70);
}
if (mxzt.length() > 27) {
mxzt = mxzt.substring(0, 27);
}
cwxx += ";【"+mxzt+"】";
}
result.setCwxx(cwxx);
}
resultList.add(result);
......
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