From bc2959c8b648ae2aae6e778a475b620377be78af Mon Sep 17 00:00:00 2001 From: liquanyu Date: Mon, 10 May 2021 15:19:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../platform/operate/web/request/BabyPsychologistRequest.java | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyPsychologistRequest.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyPsychologistRequest.java index 38e8e93..bee547c 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyPsychologistRequest.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BabyPsychologistRequest.java @@ -180,6 +180,9 @@ public class BabyPsychologistRequest { //刺激过低或过高反应 private String cjfy; + //初诊页面的现病史 + private String presentIllness; + public String getCjfy() { return cjfy; } @@ -795,4 +798,12 @@ public class BabyPsychologistRequest { public void setHandlingOpinions(String handlingOpinions) { this.handlingOpinions = handlingOpinions; } + + public String getPresentIllness() { + return presentIllness; + } + + public void setPresentIllness(String presentIllness) { + this.presentIllness = presentIllness; + } } -- 1.8.3.1