Commit a68d835443cacf6a439b240382812d609d4fc560

Authored by qiaoyuewang
1 parent 4cfba47b77
Exists in dev

4:导出数据时,手机号不加密

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PatientFacade.java View file @ a68d835
... ... @@ -2473,7 +2473,7 @@
2473 2473 }
2474 2474 }
2475 2475 //手机号已经加密,页面显示的是这个字段 南和区人民医院不加密,大同也不加密
2476   - if(CollectionUtils.isNotEmpty(data) && (!"1000000115".equals(hospital) || (!"2100002419".equals(hospital)))){
  2476 + if(CollectionUtils.isNotEmpty(data) && !("1000000115".equals(hospital) || ("2100002419".equals(hospital)))){
2477 2477 for(RiskPatientsResult result: data){
2478 2478 result.setRealPhone(StringUtils.encryPhone(result.getRealPhone()));
2479 2479 }