Commit bc2959c8b648ae2aae6e778a475b620377be78af

Authored by liquanyu
1 parent 6e1f009a78

增加字段

Showing 1 changed file with 11 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyPsychologistRequest.java View file @ bc2959c
... ... @@ -180,6 +180,9 @@
180 180 //刺激过低或过高反应
181 181 private String cjfy;
182 182  
  183 + //初诊页面的现病史
  184 + private String presentIllness;
  185 +
183 186 public String getCjfy() {
184 187 return cjfy;
185 188 }
... ... @@ -794,6 +797,14 @@
794 797  
795 798 public void setHandlingOpinions(String handlingOpinions) {
796 799 this.handlingOpinions = handlingOpinions;
  800 + }
  801 +
  802 + public String getPresentIllness() {
  803 + return presentIllness;
  804 + }
  805 +
  806 + public void setPresentIllness(String presentIllness) {
  807 + this.presentIllness = presentIllness;
797 808 }
798 809 }