|
14 | 14 | import de.symeda.sormas.api.sample.GenoTypeResult; |
15 | 15 | import de.symeda.sormas.api.sample.PCRTestSpecification; |
16 | 16 | import de.symeda.sormas.api.sample.PathogenSpecie; |
| 17 | +import de.symeda.sormas.api.sample.PathogenStrainCallStatus; |
17 | 18 | import de.symeda.sormas.api.sample.PathogenTestResultType; |
18 | 19 | import de.symeda.sormas.api.sample.PathogenTestType; |
19 | 20 | import de.symeda.sormas.api.sample.RsvSubtype; |
@@ -59,6 +60,7 @@ public class TestReportDto extends EntityDto { |
59 | 60 | public static final String TUBE_AG_TB2_GT10 = "tubeAgTb2GT10"; |
60 | 61 | public static final String TUBE_MITOGENE = "tubeMitogene"; |
61 | 62 | public static final String TUBE_MITOGENE_GT10 = "tubeMitogeneGT10"; |
| 63 | + public static final String STRAIN_CALL_STATUS = "strainCallStatus"; |
62 | 64 | public static final String PRESCRIBER_PHYSICIAN_CODE = "prescriberPhysicianCode"; |
63 | 65 | public static final String PRESCRIBER_FIRST_NAME = "prescriberFirstName"; |
64 | 66 | public static final String PRESCRIBER_LAST_NAME = "prescriberLastName"; |
@@ -132,6 +134,8 @@ public class TestReportDto extends EntityDto { |
132 | 134 | private Float tubeMitogene; |
133 | 135 | @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
134 | 136 | private Boolean tubeMitogeneGT10; |
| 137 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 138 | + private PathogenStrainCallStatus strainCallStatus; |
135 | 139 |
|
136 | 140 | @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
137 | 141 | @SensitiveData |
@@ -208,6 +212,7 @@ public class TestReportDto extends EntityDto { |
208 | 212 | private String seroGroupSpecificationText; |
209 | 213 | private SerotypingMethod seroTypingMethod; |
210 | 214 | private String seroTypingMethodText; |
| 215 | + private String serotype; |
211 | 216 |
|
212 | 217 | public SampleReportReferenceDto getSampleReport() { |
213 | 218 | return sampleReport; |
@@ -495,6 +500,14 @@ public void setTubeMitogeneGT10(Boolean tubeMitogeneGT10) { |
495 | 500 | this.tubeMitogeneGT10 = tubeMitogeneGT10; |
496 | 501 | } |
497 | 502 |
|
| 503 | + public PathogenStrainCallStatus getStrainCallStatus() { |
| 504 | + return strainCallStatus; |
| 505 | + } |
| 506 | + |
| 507 | + public void setStrainCallStatus(PathogenStrainCallStatus strainCallStatus) { |
| 508 | + this.strainCallStatus = strainCallStatus; |
| 509 | + } |
| 510 | + |
498 | 511 | public String getPrescriberPhysicianCode() { |
499 | 512 | return prescriberPhysicianCode; |
500 | 513 | } |
@@ -879,4 +892,12 @@ public String getSeroTypingMethodText() { |
879 | 892 | public void setSeroTypingMethodText(String seroTypingMethodText) { |
880 | 893 | this.seroTypingMethodText = seroTypingMethodText; |
881 | 894 | } |
| 895 | + |
| 896 | + public String getSerotype() { |
| 897 | + return serotype; |
| 898 | + } |
| 899 | + |
| 900 | + public void setSerotype(String serotype) { |
| 901 | + this.serotype = serotype; |
| 902 | + } |
882 | 903 | } |
0 commit comments