Commit 9e040e73 authored by 徐州's avatar 徐州

新增日志

parent 04fc2b2e
......@@ -356,10 +356,13 @@ public class CustomerWechat implements ICustomerWechat {
// 业务层统一处理
try {
House365RestObject<CustomerEntity> data = doGetHotLineCustomer(map);
LOGGER.info("getShowMobile=" + entity.getShowMobile() + ",data.size=" + data.getList().size());
if(entity.getShowMobile() != 1) {
if(data.getList() != null) {
for (int i = 0; i < data.getList().size(); i++) {
data.getList().get(i).setPhone(MobileUtil.hidePhone(data.getList().get(i).getPhone()));
if(entity.getShowMobile() != 1) {
if(data.getList() != null) {
for (int i = 0; i < data.getList().size(); i++) {
data.getList().get(i).setPhone(MobileUtil.hidePhone(data.getList().get(i).getPhone()));
}
}
}
}
......
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