Commit 8e55786cb9756d0f295c458f16c7a4bd68982d9d
1 parent
0da40bdc8b
Exists in
master
and in
1 other branch
增加
Showing 1 changed file with 38 additions and 25 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyVisitResult.java
View file @
8e55786
| ... | ... | @@ -75,6 +75,7 @@ |
| 75 | 75 | // 具体的访视记录 |
| 76 | 76 | private List<BabyVisit> data; |
| 77 | 77 | |
| 78 | + | |
| 78 | 79 | public String getParentId() { |
| 79 | 80 | return parentId; |
| 80 | 81 | } |
| 81 | 82 | |
| 82 | 83 | |
| 83 | 84 | |
| ... | ... | @@ -265,19 +266,19 @@ |
| 265 | 266 | private Map deformity; |
| 266 | 267 | |
| 267 | 268 | // 听力情况 |
| 268 | - private int hearing; | |
| 269 | + private Integer hearing; | |
| 269 | 270 | |
| 270 | 271 | // 疾病筛查 |
| 271 | 272 | private Map disease; |
| 272 | 273 | |
| 273 | 274 | // 出生体重 |
| 274 | - private double birthWeight; | |
| 275 | + private Double birthWeight; | |
| 275 | 276 | |
| 276 | 277 | // 目前体重 |
| 277 | - private double weight; | |
| 278 | + private Double weight; | |
| 278 | 279 | |
| 279 | 280 | // 出生身长 |
| 280 | - private double height; | |
| 281 | + private Double height; | |
| 281 | 282 | |
| 282 | 283 | // 喂养方式 |
| 283 | 284 | private Integer feedType; |
| ... | ... | @@ -406,9 +407,6 @@ |
| 406 | 407 | return birthWeight; |
| 407 | 408 | } |
| 408 | 409 | |
| 409 | - public void setBirthWeight(double birthWeight) { | |
| 410 | - this.birthWeight = birthWeight; | |
| 411 | - } | |
| 412 | 410 | |
| 413 | 411 | public Double getWeight() { |
| 414 | 412 | return weight; |
| 415 | 413 | |
| ... | ... | @@ -446,17 +444,11 @@ |
| 446 | 444 | return eatTime; |
| 447 | 445 | } |
| 448 | 446 | |
| 449 | - public void setEatTime(int eatTime) { | |
| 450 | - this.eatTime = eatTime; | |
| 451 | - } | |
| 452 | 447 | |
| 453 | 448 | public Integer getEmesis() { |
| 454 | 449 | return emesis; |
| 455 | 450 | } |
| 456 | 451 | |
| 457 | - public void setEmesis(int emesis) { | |
| 458 | - this.emesis = emesis; | |
| 459 | - } | |
| 460 | 452 | |
| 461 | 453 | public String getShit() { |
| 462 | 454 | return shit; |
| 463 | 455 | |
| 464 | 456 | |
| 465 | 457 | |
| ... | ... | @@ -470,33 +462,21 @@ |
| 470 | 462 | return shitTimes; |
| 471 | 463 | } |
| 472 | 464 | |
| 473 | - public void setShitTimes(int shitTimes) { | |
| 474 | - this.shitTimes = shitTimes; | |
| 475 | - } | |
| 476 | 465 | |
| 477 | 466 | public Double getTemperature() { |
| 478 | 467 | return temperature; |
| 479 | 468 | } |
| 480 | 469 | |
| 481 | - public void setTemperature(double temperature) { | |
| 482 | - this.temperature = temperature; | |
| 483 | - } | |
| 484 | 470 | |
| 485 | 471 | public Double getHeartRate() { |
| 486 | 472 | return heartRate; |
| 487 | 473 | } |
| 488 | 474 | |
| 489 | - public void setHeartRate(double heartRate) { | |
| 490 | - this.heartRate = heartRate; | |
| 491 | - } | |
| 492 | 475 | |
| 493 | 476 | public Double getRespiratoryRate() { |
| 494 | 477 | return respiratoryRate; |
| 495 | 478 | } |
| 496 | 479 | |
| 497 | - public void setRespiratoryRate(double respiratoryRate) { | |
| 498 | - this.respiratoryRate = respiratoryRate; | |
| 499 | - } | |
| 500 | 480 | |
| 501 | 481 | public Map getAbdominalPalpation() { |
| 502 | 482 | return abdominalPalpation; |
| ... | ... | @@ -720,6 +700,39 @@ |
| 720 | 700 | |
| 721 | 701 | public void setDoctorSign(String doctorSign) { |
| 722 | 702 | this.doctorSign = doctorSign; |
| 703 | + } | |
| 704 | + | |
| 705 | + | |
| 706 | + public void setBirthWeight(Double birthWeight) { | |
| 707 | + this.birthWeight = birthWeight; | |
| 708 | + } | |
| 709 | + | |
| 710 | + public void setEatTime(Integer eatTime) { | |
| 711 | + this.eatTime = eatTime; | |
| 712 | + } | |
| 713 | + | |
| 714 | + public void setEmesis(Integer emesis) { | |
| 715 | + this.emesis = emesis; | |
| 716 | + } | |
| 717 | + | |
| 718 | + public void setHearing(Integer hearing) { | |
| 719 | + this.hearing = hearing; | |
| 720 | + } | |
| 721 | + | |
| 722 | + public void setHeartRate(Double heartRate) { | |
| 723 | + this.heartRate = heartRate; | |
| 724 | + } | |
| 725 | + | |
| 726 | + public void setRespiratoryRate(Double respiratoryRate) { | |
| 727 | + this.respiratoryRate = respiratoryRate; | |
| 728 | + } | |
| 729 | + | |
| 730 | + public void setShitTimes(Integer shitTimes) { | |
| 731 | + this.shitTimes = shitTimes; | |
| 732 | + } | |
| 733 | + | |
| 734 | + public void setTemperature(Double temperature) { | |
| 735 | + this.temperature = temperature; | |
| 723 | 736 | } |
| 724 | 737 | |
| 725 | 738 | @Override |