Commit 2fc6b43ca850bbef9aa21018a36e1d93d814bdba
1 parent
282587fab9
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 126 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
2fc6b43
| ... | ... | @@ -2142,6 +2142,21 @@ |
| 2142 | 2142 | model.setAssistCheckOther(checkModel.getAssistCheckOther()); |
| 2143 | 2143 | model.setNavel(checkModel.getNavel()); |
| 2144 | 2144 | |
| 2145 | + | |
| 2146 | + model.setAbnormalSize(checkModel.getAbnormalSize()); | |
| 2147 | + | |
| 2148 | + model.setAdaptationIA(checkModel.getAdaptationIA()); | |
| 2149 | + model.setExerciseIA(checkModel.getExerciseIA()); | |
| 2150 | + model.setLanguageIA(checkModel.getLanguageIA()); | |
| 2151 | + model.setMovementIA(checkModel.getMovementIA()); | |
| 2152 | + model.setSocialContactIA(checkModel.getSocialContactIA()); | |
| 2153 | + | |
| 2154 | + model.setAdaptationDQ(checkModel.getAdaptationDQ()); | |
| 2155 | + model.setExerciseDQ(checkModel.getExerciseDQ()); | |
| 2156 | + model.setLanguageDQ(checkModel.getLanguageDQ()); | |
| 2157 | + model.setMovementDQ(checkModel.getMovementDQ()); | |
| 2158 | + model.setSocialContactDQ(checkModel.getSocialContactDQ()); | |
| 2159 | + | |
| 2145 | 2160 | model.setHighRisk(checkModel.getHighRisk()); |
| 2146 | 2161 | List <Map> highRiskInfos = basicConfigFacade.queryBaseInfoByMap(checkModel.getHighRiskInfo()); |
| 2147 | 2162 | model.setHighRiskInfo(highRiskInfos); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyCheckResult.java
View file @
2fc6b43
| ... | ... | @@ -675,6 +675,117 @@ |
| 675 | 675 | |
| 676 | 676 | private String configItemId; |
| 677 | 677 | |
| 678 | + /** | |
| 679 | + * 运动 智龄、发育商 | |
| 680 | + */ | |
| 681 | + private String exerciseIA; | |
| 682 | + private String exerciseDQ ; | |
| 683 | + | |
| 684 | + /** | |
| 685 | + * 动作 | |
| 686 | + */ | |
| 687 | + private String movementIA; | |
| 688 | + private String movementDQ; | |
| 689 | + | |
| 690 | + /** | |
| 691 | + * 适应 | |
| 692 | + */ | |
| 693 | + private String adaptationIA; | |
| 694 | + private String adaptationDQ ; | |
| 695 | + | |
| 696 | + /** | |
| 697 | + * 语言 | |
| 698 | + */ | |
| 699 | + private String languageIA; | |
| 700 | + private String languageDQ; | |
| 701 | + | |
| 702 | + /** | |
| 703 | + * 社交 | |
| 704 | + */ | |
| 705 | + private String socialContactIA; | |
| 706 | + private String socialContactDQ; | |
| 707 | + | |
| 708 | + | |
| 709 | + public String getExerciseIA() { | |
| 710 | + return exerciseIA; | |
| 711 | + } | |
| 712 | + | |
| 713 | + public void setExerciseIA(String exerciseIA) { | |
| 714 | + this.exerciseIA = exerciseIA; | |
| 715 | + } | |
| 716 | + | |
| 717 | + public String getExerciseDQ() { | |
| 718 | + return exerciseDQ; | |
| 719 | + } | |
| 720 | + | |
| 721 | + public void setExerciseDQ(String exerciseDQ) { | |
| 722 | + this.exerciseDQ = exerciseDQ; | |
| 723 | + } | |
| 724 | + | |
| 725 | + public String getMovementIA() { | |
| 726 | + return movementIA; | |
| 727 | + } | |
| 728 | + | |
| 729 | + public void setMovementIA(String movementIA) { | |
| 730 | + this.movementIA = movementIA; | |
| 731 | + } | |
| 732 | + | |
| 733 | + public String getMovementDQ() { | |
| 734 | + return movementDQ; | |
| 735 | + } | |
| 736 | + | |
| 737 | + public void setMovementDQ(String movementDQ) { | |
| 738 | + this.movementDQ = movementDQ; | |
| 739 | + } | |
| 740 | + | |
| 741 | + public String getAdaptationIA() { | |
| 742 | + return adaptationIA; | |
| 743 | + } | |
| 744 | + | |
| 745 | + public void setAdaptationIA(String adaptationIA) { | |
| 746 | + this.adaptationIA = adaptationIA; | |
| 747 | + } | |
| 748 | + | |
| 749 | + public String getAdaptationDQ() { | |
| 750 | + return adaptationDQ; | |
| 751 | + } | |
| 752 | + | |
| 753 | + public void setAdaptationDQ(String adaptationDQ) { | |
| 754 | + this.adaptationDQ = adaptationDQ; | |
| 755 | + } | |
| 756 | + | |
| 757 | + public String getLanguageIA() { | |
| 758 | + return languageIA; | |
| 759 | + } | |
| 760 | + | |
| 761 | + public void setLanguageIA(String languageIA) { | |
| 762 | + this.languageIA = languageIA; | |
| 763 | + } | |
| 764 | + | |
| 765 | + public String getLanguageDQ() { | |
| 766 | + return languageDQ; | |
| 767 | + } | |
| 768 | + | |
| 769 | + public void setLanguageDQ(String languageDQ) { | |
| 770 | + this.languageDQ = languageDQ; | |
| 771 | + } | |
| 772 | + | |
| 773 | + public String getSocialContactIA() { | |
| 774 | + return socialContactIA; | |
| 775 | + } | |
| 776 | + | |
| 777 | + public void setSocialContactIA(String socialContactIA) { | |
| 778 | + this.socialContactIA = socialContactIA; | |
| 779 | + } | |
| 780 | + | |
| 781 | + public String getSocialContactDQ() { | |
| 782 | + return socialContactDQ; | |
| 783 | + } | |
| 784 | + | |
| 785 | + public void setSocialContactDQ(String socialContactDQ) { | |
| 786 | + this.socialContactDQ = socialContactDQ; | |
| 787 | + } | |
| 788 | + | |
| 678 | 789 | public String getConfigItemId() { |
| 679 | 790 | return configItemId; |
| 680 | 791 | } |