|
|
|
@ -444,8 +444,11 @@ public class AppEnterpriseLawEnforcementController extends BaseController |
|
|
|
} |
|
|
|
String tmpUserShow = ""; |
|
|
|
for (UserBean ub : userBeans) { |
|
|
|
String lawCertificateNum = StringUtils.isEmpty(ub.getLawCertificateNum())?"":ub.getLawCertificateNum(); |
|
|
|
tmpUserShow += ub.getUserName() +" "+ lawCertificateNum + ","; |
|
|
|
String temp = ub.getLawCertificateNum(); |
|
|
|
if(StringUtils.isEmpty(temp)){ |
|
|
|
temp=CommonUtil.encryptPhone(ub.getPhonenumber()); |
|
|
|
} |
|
|
|
tmpUserShow += ub.getUserName() +" "+ temp + ","; |
|
|
|
} |
|
|
|
if (tmpUserShow.length() > 0) { |
|
|
|
tmpUserShow = tmpUserShow.substring(0, tmpUserShow.length()-1); |
|
|
|
|