Commit 18a50bc3ca74378ceb88db2a3c33b10c3d7462d5
1 parent
6c2b7862e5
Exists in
master
and in
6 other branches
1
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/TrackDownFacade.java
View file @
18a50bc
... | ... | @@ -140,9 +140,9 @@ |
140 | 140 | @Override |
141 | 141 | public Map build(TrackDownRecord downRecord, MongoTemplate mongoTemplate) { |
142 | 142 | Map<String, Object> temp = new HashMap<>(); |
143 | - temp.put("id", downRecord.getParentId()); | |
143 | + temp.put("id", downRecord.getId()); | |
144 | 144 | temp.put("pid", downRecord.getPid()); |
145 | - temp.put("residentsArchiveId", downRecord.getParentId()); | |
145 | + temp.put("parentId", downRecord.getParentId()); | |
146 | 146 | temp.put("username", downRecord.getUsername()); |
147 | 147 | temp.put("cardNo", downRecord.getCardNo()); |
148 | 148 | temp.put("residenceAddress", CommonsHelper.getFullAddress(downRecord.getProvinceRegisterId(), downRecord.getCityRegisterId(), downRecord.getAreaRegisterId(), downRecord.getAddressRegister(), basicConfigService)); /** 居住地 */ |