-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ALS-6344] - Make new query that retuns patient count and concept count
- Loading branch information
1 parent
5f08d17
commit c543779
Showing
4 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
...g/src/main/java/edu/harvard/hms/dbmi/avillach/hpds/processing/PatientAndConceptCount.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package edu.harvard.hms.dbmi.avillach.hpds.processing; | ||
|
||
public class PatientAndConceptCount { | ||
private long patientCount, conceptCount; | ||
|
||
public long getPatientCount() { | ||
return patientCount; | ||
} | ||
|
||
public void setPatientCount(long patientCount) { | ||
this.patientCount = patientCount; | ||
} | ||
|
||
public long getConceptCount() { | ||
return conceptCount; | ||
} | ||
|
||
public void setConceptCount(long conceptCount) { | ||
this.conceptCount = conceptCount; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters