Commit 503e1b54 authored by 徐州's avatar 徐州

新增日志

parent 9e040e73
......@@ -356,7 +356,7 @@ public class CustomerWechat implements ICustomerWechat {
// 业务层统一处理
try {
House365RestObject<CustomerEntity> data = doGetHotLineCustomer(map);
LOGGER.info("getShowMobile=" + entity.getShowMobile() + ",data.size=" + data.getList().size());
LOGGER.error("getShowMobile=" + entity.getShowMobile() + ",data.size=" + data.getList().size());
if(entity.getShowMobile() != 1) {
if(entity.getShowMobile() != 1) {
if(data.getList() != null) {
......@@ -1838,7 +1838,11 @@ public class CustomerWechat implements ICustomerWechat {
try {
House365RestObject<CustomerEntity> data = doGetManagers(map);
if(entity.getShowMobile() != 1) {
data.getEntity().setPhone(MobileUtil.hidePhone(data.getEntity().getPhone()));
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()));
}
}
}
response.setResult(ReturnAppResult.APP_SUCCESS.getResultCode());
response.setMsg(ReturnAppResult.APP_SUCCESS.getResultMessage());
......
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