Commit 8c1aa2b6dcbcb30fdf2fbf04b2c3b22552835909
1 parent
f7e4fcb4be
Exists in
master
and in
1 other branch
查询字段增加presentIllness
Showing 1 changed file with 12 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyPsychologistResult.java
View file @
8c1aa2b
... | ... | @@ -182,6 +182,9 @@ |
182 | 182 | //刺激过低或过高反应 |
183 | 183 | private String cjfy; |
184 | 184 | |
185 | + //初诊页面的现病史 | |
186 | + private String presentIllness; | |
187 | + | |
185 | 188 | public String getCjfy() { |
186 | 189 | return cjfy; |
187 | 190 | } |
... | ... | @@ -830,6 +833,14 @@ |
830 | 833 | this.mHighRiskReason = mHighRiskReason; |
831 | 834 | } |
832 | 835 | |
836 | + public String getPresentIllness() { | |
837 | + return presentIllness; | |
838 | + } | |
839 | + | |
840 | + public void setPresentIllness(String presentIllness) { | |
841 | + this.presentIllness = presentIllness; | |
842 | + } | |
843 | + | |
833 | 844 | @Override |
834 | 845 | public BabyPsychologistResult convertToResult(BabyPsychologistModel destModel) { |
835 | 846 | |
... | ... | @@ -939,6 +950,7 @@ |
939 | 950 | setAso(destModel.getAso()); |
940 | 951 | setFzOther(destModel.getFzOther()); |
941 | 952 | setCjfy(destModel.getCjfy()); |
953 | + setPresentIllness(destModel.getPresentIllness()); | |
942 | 954 | |
943 | 955 | return this; |
944 | 956 | } |