Commit 0ae15a11 authored by 徐州's avatar 徐州

修改线上环境数据库参数

parent 24625305
...@@ -903,7 +903,7 @@ public class CustomerManagementController extends BaseController { ...@@ -903,7 +903,7 @@ public class CustomerManagementController extends BaseController {
/** /**
* 用户无权查看完整手机号 * 用户无权查看完整手机号
*/ */
if(userEntity.getShowMobile() != 1) { if(userEntity.getShowMobile() != null && userEntity.getShowMobile() != 1) {
customers = customers.stream().map(i-> { customers = customers.stream().map(i-> {
i.setPhone(MobileUtil.hidePhone(i.getPhone())); i.setPhone(MobileUtil.hidePhone(i.getPhone()));
return i; return i;
......
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