|
13 | 13 | import de.symeda.sormas.api.infrastructure.country.CountryReferenceDto; |
14 | 14 | import de.symeda.sormas.api.sample.GenoTypeResult; |
15 | 15 | import de.symeda.sormas.api.sample.PCRTestSpecification; |
| 16 | +import de.symeda.sormas.api.sample.PathogenSpecie; |
16 | 17 | import de.symeda.sormas.api.sample.PathogenTestResultType; |
17 | 18 | import de.symeda.sormas.api.sample.PathogenTestType; |
18 | 19 | import de.symeda.sormas.api.sample.RsvSubtype; |
@@ -46,6 +47,15 @@ public class TestReportDto extends EntityDto { |
46 | 47 | public static final String CT_VALUE_S = "ctValueS"; |
47 | 48 | public static final String CT_VALUE_ORF_1 = "ctValueOrf1"; |
48 | 49 | public static final String CT_VALUE_RDRP_S = "ctValueRdrpS"; |
| 50 | + public static final String SPECIE = "specie"; |
| 51 | + public static final String TUBE_NIL = "tubeNil"; |
| 52 | + public static final String TUBE_NIL_GT10 = "tubeNilGT10"; |
| 53 | + public static final String TUBE_AG_TB1 = "tubeAgTb1"; |
| 54 | + public static final String TUBE_AG_TB1_GT10 = "tubeAgTb1GT10"; |
| 55 | + public static final String TUBE_AG_TB2 = "tubeAgTb2"; |
| 56 | + public static final String TUBE_AG_TB2_GT10 = "tubeAgTb2GT10"; |
| 57 | + public static final String TUBE_MITOGENE = "tubeMitogene"; |
| 58 | + public static final String TUBE_MITOGENE_GT10 = "tubeMitogeneGT10"; |
49 | 59 | public static final String PRESCRIBER_PHYSICIAN_CODE = "prescriberPhysicianCode"; |
50 | 60 | public static final String PRESCRIBER_FIRST_NAME = "prescriberFirstName"; |
51 | 61 | public static final String PRESCRIBER_LAST_NAME = "prescriberLastName"; |
@@ -102,6 +112,24 @@ public class TestReportDto extends EntityDto { |
102 | 112 | private Float ctValueOrf1; |
103 | 113 | @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
104 | 114 | private Float ctValueRdrpS; |
| 115 | + private PathogenSpecie specie; |
| 116 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 117 | + private Float tubeNil; |
| 118 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 119 | + private Boolean tubeNilGT10; |
| 120 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 121 | + private Float tubeAgTb1; |
| 122 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 123 | + private Boolean tubeAgTb1GT10; |
| 124 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 125 | + private Float tubeAgTb2; |
| 126 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 127 | + private Boolean tubeAgTb2GT10; |
| 128 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 129 | + private Float tubeMitogene; |
| 130 | + @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
| 131 | + private Boolean tubeMitogeneGT10; |
| 132 | + |
105 | 133 | @HideForCountriesExcept(countries = CountryHelper.COUNTRY_CODE_LUXEMBOURG) |
106 | 134 | @SensitiveData |
107 | 135 | @Size(max = FieldConstraints.CHARACTER_LIMIT_TEXT, message = Validations.textTooLong) |
@@ -351,6 +379,78 @@ public void setCtValueRdrpS(Float ctValueRdrpS) { |
351 | 379 | this.ctValueRdrpS = ctValueRdrpS; |
352 | 380 | } |
353 | 381 |
|
| 382 | + public PathogenSpecie getSpecie() { |
| 383 | + return specie; |
| 384 | + } |
| 385 | + |
| 386 | + public void setSpecie(PathogenSpecie specie) { |
| 387 | + this.specie = specie; |
| 388 | + } |
| 389 | + |
| 390 | + public Float getTubeNil() { |
| 391 | + return tubeNil; |
| 392 | + } |
| 393 | + |
| 394 | + public void setTubeNil(Float tubeNil) { |
| 395 | + this.tubeNil = tubeNil; |
| 396 | + } |
| 397 | + |
| 398 | + public Boolean getTubeNilGT10() { |
| 399 | + return tubeNilGT10; |
| 400 | + } |
| 401 | + |
| 402 | + public void setTubeNilGT10(Boolean tubeNilGT10) { |
| 403 | + this.tubeNilGT10 = tubeNilGT10; |
| 404 | + } |
| 405 | + |
| 406 | + public Float getTubeAgTb1() { |
| 407 | + return tubeAgTb1; |
| 408 | + } |
| 409 | + |
| 410 | + public void setTubeAgTb1(Float tubeAgTb1) { |
| 411 | + this.tubeAgTb1 = tubeAgTb1; |
| 412 | + } |
| 413 | + |
| 414 | + public Boolean getTubeAgTb1GT10() { |
| 415 | + return tubeAgTb1GT10; |
| 416 | + } |
| 417 | + |
| 418 | + public void setTubeAgTb1GT10(Boolean tubeAgTb1GT10) { |
| 419 | + this.tubeAgTb1GT10 = tubeAgTb1GT10; |
| 420 | + } |
| 421 | + |
| 422 | + public Float getTubeAgTb2() { |
| 423 | + return tubeAgTb2; |
| 424 | + } |
| 425 | + |
| 426 | + public void setTubeAgTb2(Float tubeAgTb2) { |
| 427 | + this.tubeAgTb2 = tubeAgTb2; |
| 428 | + } |
| 429 | + |
| 430 | + public Boolean getTubeAgTb2GT10() { |
| 431 | + return tubeAgTb2GT10; |
| 432 | + } |
| 433 | + |
| 434 | + public void setTubeAgTb2GT10(Boolean tubeAgTb2GT10) { |
| 435 | + this.tubeAgTb2GT10 = tubeAgTb2GT10; |
| 436 | + } |
| 437 | + |
| 438 | + public Float getTubeMitogene() { |
| 439 | + return tubeMitogene; |
| 440 | + } |
| 441 | + |
| 442 | + public void setTubeMitogene(Float tubeMitogene) { |
| 443 | + this.tubeMitogene = tubeMitogene; |
| 444 | + } |
| 445 | + |
| 446 | + public Boolean getTubeMitogeneGT10() { |
| 447 | + return tubeMitogeneGT10; |
| 448 | + } |
| 449 | + |
| 450 | + public void setTubeMitogeneGT10(Boolean tubeMitogeneGT10) { |
| 451 | + this.tubeMitogeneGT10 = tubeMitogeneGT10; |
| 452 | + } |
| 453 | + |
354 | 454 | public String getPrescriberPhysicianCode() { |
355 | 455 | return prescriberPhysicianCode; |
356 | 456 | } |
|
0 commit comments