Skip to content

Commit

Permalink
hdss name
Browse files Browse the repository at this point in the history
  • Loading branch information
trevlenb2 committed Nov 8, 2024
1 parent 482805d commit 5f85f1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ public ResponseEntity<List<HdssCompoundHouseholdIndividualObj>> search(
.individualId(individualProjection.getIndividualId())
.gender(individualProjection.getGender())
.dob(individualProjection.getDob().toString()).id(individualProjection.getId())
.name(individualProjection.getName())
.build()).collect(Collectors.toList()));
} else {
return ResponseEntity.notFound().build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ public class HdssCompoundHouseholdIndividualObj implements Serializable {
private String householdId;
private String dob;
private String gender;
private String name;
private int serverVersion;
}

0 comments on commit 5f85f1c

Please sign in to comment.