Commit fd670a19e1a90d605b07e00b20092445a4517110

Authored by yangfei
1 parent 2fd7cd2721

自动生成追访信息

Showing 1 changed file with 4 additions and 4 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/TrackDownFacade.java View file @ fd670a1
... ... @@ -301,7 +301,7 @@
301 301 temp.put("pid", downRecord.getPid());
302 302 temp.put("parentId", downRecord.getParentId());
303 303 temp.put("username", downRecord.getUsername());
304   - temp.put("cardNo", downRecord.getCardNo());
  304 + temp.put("cardNo", StringUtils.encryCardNo(downRecord.getCardNo()));
305 305 temp.put("trackDownDateType", downRecord.getTrackType());
306 306 temp.put("residenceAddress", CommonsHelper.getFullAddress(downRecord.getProvinceRegisterId(), downRecord.getCityRegisterId(), downRecord.getAreaRegisterId(), downRecord.getAddressRegister(), basicConfigService)); /** 居住地 */
307 307 temp.put("phone", StringUtils.encryPhone(downRecord.getPhone()));
... ... @@ -352,7 +352,7 @@
352 352 temp.put("pid", downRecord.getPid());
353 353 temp.put("parentId", downRecord.getParentId());
354 354 temp.put("username", downRecord.getUsername());
355   - temp.put("cardNo", downRecord.getCardNo());
  355 + temp.put("cardNo", StringUtils.encryCardNo(downRecord.getCardNo()));
356 356 temp.put("trackDownDateType", downRecord.getTrackType());
357 357 temp.put("residenceAddress", CommonsHelper.getFullAddress(downRecord.getProvinceRegisterId(), downRecord.getCityRegisterId(), downRecord.getAreaRegisterId(), downRecord.getAddressRegister(), basicConfigService)); /** 居住地 */
358 358 temp.put("phone", StringUtils.encryPhone(downRecord.getPhone()));
... ... @@ -398,7 +398,7 @@
398 398 temp.put("parentId", downRecord.getParentId());
399 399 temp.put("trackDownDateType", downRecord.getTrackType());
400 400 temp.put("username", downRecord.getUsername());
401   - temp.put("cardNo", downRecord.getCardNo());
  401 + temp.put("cardNo", StringUtils.encryCardNo(downRecord.getCardNo()));
402 402 temp.put("residenceAddress", CommonsHelper.getFullAddress(downRecord.getProvinceRegisterId(), downRecord.getCityRegisterId(), downRecord.getAreaRegisterId(), downRecord.getAddressRegister(), basicConfigService)); /** 居住地 */
403 403 temp.put("phone", StringUtils.encryPhone(downRecord.getPhone()));
404 404 TrackDown trackDown = mongoTemplate.findOne(Query.query(Criteria.where("parentId").is(downRecord.getParentId()).and("yn").is(1).and("trackDownDateType").is(downRecord.getTrackType())).with(new Sort(Sort.Direction.DESC, "created")), TrackDown.class);
... ... @@ -425,7 +425,7 @@
425 425 temp.put("pid", downRecord.getPid());
426 426 temp.put("parentId", downRecord.getResidentsArchiveId());
427 427 temp.put("username", downRecord.getUsername());
428   - temp.put("cardNo", downRecord.getCardNo());
  428 + temp.put("cardNo", StringUtils.encryCardNo(downRecord.getCardNo()));
429 429 temp.put("trackDownDateType", downRecord.getTrackType());
430 430  
431 431 temp.put("residenceAddress", CommonsHelper.getFullAddress(downRecord.getProvinceRegisterId(), downRecord.getCityRegisterId(), downRecord.getAreaRegisterId(), downRecord.getAddressRegister(), basicConfigService)); /** 居住地 */