@@ -93,8 +93,8 @@ public class DiseaseBurdenDto implements Serializable {
93
93
private String otherCount ;
94
94
95
95
96
- private Date to ;
97
- private Date from ;
96
+ private Date toDate ;
97
+ private Date fromDate ;
98
98
99
99
public DiseaseBurdenDto (
100
100
RegionDto regionDto ,
@@ -152,8 +152,8 @@ public DiseaseBurdenDto(
152
152
this .caseDeathCount = caseDeathCount ;
153
153
this .lastReportedDistrictName = lastReportedDistrictName ;
154
154
this .outbreakDistrict = outbreakDistrict ;
155
- this .from = from ;
156
- this .to =to ;
155
+ this .fromDate = from ;
156
+ this .toDate =to ;
157
157
}
158
158
159
159
public DiseaseBurdenDto (
@@ -366,94 +366,70 @@ public void setTotal(String total) {
366
366
this .total = total ;
367
367
}
368
368
369
-
370
- public Date getTo () {
371
- return to ;
369
+ public Date getToDate () {
370
+ return toDate ;
372
371
}
373
372
374
-
375
- public void setTo (Date to ) {
376
- this .to = to ;
373
+ public void setToDate (Date toDate ) {
374
+ this .toDate = toDate ;
377
375
}
378
376
379
-
380
- public Date getFrom () {
381
- return from ;
377
+ public Date getFromDate () {
378
+ return fromDate ;
382
379
}
383
380
384
-
385
- public void setFrom (Date from ) {
386
- this .from = from ;
381
+ public void setFromDate (Date fromDate ) {
382
+ this .fromDate = fromDate ;
387
383
}
388
384
389
-
390
-
391
385
public String getTotalCount () {
392
386
return totalCount ;
393
387
}
394
388
395
-
396
389
public void setTotalCount (String totalCount ) {
397
390
this .totalCount = totalCount ;
398
391
}
399
392
400
-
401
393
public String getDeathsCount () {
402
394
return deathsCount ;
403
395
}
404
396
405
-
406
397
public void setDeathsCount (String deathsCount ) {
407
398
this .deathsCount = deathsCount ;
408
399
}
409
400
410
-
411
401
public String getRecoveredCount () {
412
402
return recoveredCount ;
413
403
}
414
404
415
-
416
405
public void setRecoveredCount (String recoveredCount ) {
417
406
this .recoveredCount = recoveredCount ;
418
407
}
419
408
420
-
421
-
422
-
423
-
424
409
public String getActiveCount () {
425
410
return activeCount ;
426
411
}
427
412
428
-
429
413
public void setActiveCount (String activeCount ) {
430
414
this .activeCount = activeCount ;
431
415
}
432
416
433
-
434
417
public String getOther () {
435
418
return other ;
436
419
}
437
420
438
-
439
421
public void setOther (String other ) {
440
422
this .other = other ;
441
423
}
442
424
443
-
444
-
445
-
446
-
447
425
public String getOtherCount () {
448
426
return otherCount ;
449
427
}
450
428
451
-
452
429
public void setOtherCount (String otherCount ) {
453
430
this .otherCount = otherCount ;
454
431
}
455
432
456
-
457
433
@ Override
458
434
public String toString () {
459
435
return "DiseaseBurdenDto [disease=" + disease + ", total=" + total + ", caseCount=" + caseCount
@@ -462,6 +438,6 @@ public String toString() {
462
438
+ lastReportedDistrictName + ", caseClassification=" + caseClassification + ", cfr=" + cfr
463
439
+ ", lastReportedDistrict=" + lastReportedDistrict + ", outbreakDistrict=" + outbreakDistrict
464
440
+ ", deaths=" + deaths + ", region=" + region + ", recovered=" + recovered + ", activeCases="
465
- + activeCases + ", to =" + to + ", from =" + from + "]" ;
441
+ + activeCases + ", toDate =" + toDate + ", fromDate =" + fromDate + "]" ;
466
442
}
467
443
}
0 commit comments