Commit 7686813319343072409ae20dcb4b2fd96bfccb21

Authored by liquanyu
1 parent 3484015def

update

Showing 4 changed files with 36 additions and 1 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BabyPsychologistModel.java View file @ 7686813
... ... @@ -184,6 +184,18 @@
184 184 private String aso;
185 185 private String fzOther;
186 186  
  187 + //刺激过低或过高反应
  188 + private String cjfy;
  189 +
  190 + public String getCjfy() {
  191 + return cjfy;
  192 + }
  193 +
  194 + public void setCjfy(String cjfy) {
  195 + this.cjfy = cjfy;
  196 + }
  197 +
  198 +
187 199 public String getXcg() {
188 200 return xcg;
189 201 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyPsychologistFacade.java View file @ 7686813
... ... @@ -156,7 +156,7 @@
156 156 model.setXdt(request.getXdt());
157 157 model.setAso(request.getAso());
158 158 model.setFzOther(request.getFzOther());
159   -
  159 + model.setCjfy(request.getCjfy());
160 160 return model;
161 161  
162 162 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyPsychologistRequest.java View file @ 7686813
... ... @@ -177,6 +177,17 @@
177 177 private String aso;
178 178 private String fzOther;
179 179  
  180 + //刺激过低或过高反应
  181 + private String cjfy;
  182 +
  183 + public String getCjfy() {
  184 + return cjfy;
  185 + }
  186 +
  187 + public void setCjfy(String cjfy) {
  188 + this.cjfy = cjfy;
  189 + }
  190 +
180 191 public String getXcg() {
181 192 return xcg;
182 193 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/BabyPsychologistResult.java View file @ 7686813
... ... @@ -179,6 +179,17 @@
179 179 private String aso;
180 180 private String fzOther;
181 181  
  182 + //刺激过低或过高反应
  183 + private String cjfy;
  184 +
  185 + public String getCjfy() {
  186 + return cjfy;
  187 + }
  188 +
  189 + public void setCjfy(String cjfy) {
  190 + this.cjfy = cjfy;
  191 + }
  192 +
182 193 public String getXcg() {
183 194 return xcg;
184 195 }
... ... @@ -927,6 +938,7 @@
927 938 setXdt(destModel.getXdt());
928 939 setAso(destModel.getAso());
929 940 setFzOther(destModel.getFzOther());
  941 + setCjfy(destModel.getCjfy());
930 942  
931 943 return this;
932 944 }