Commit 9b3c5cbc6342bd152c31bf3362759cc1d85c72c8

Authored by liquanyu
1 parent 81184f4177

初诊流产

Showing 3 changed files with 69 additions and 0 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/AntExChuModel.java View file @ 9b3c5cb
... ... @@ -98,6 +98,27 @@
98 98 //丈夫健康情况
99 99 private String hHealthInfo;
100 100  
  101 + //自然流产
  102 + private Integer abortionZR;
  103 + //人工流产
  104 + private Integer abortionRG;
  105 +
  106 + public Integer getAbortionZR() {
  107 + return abortionZR;
  108 + }
  109 +
  110 + public void setAbortionZR(Integer abortionZR) {
  111 + this.abortionZR = abortionZR;
  112 + }
  113 +
  114 + public Integer getAbortionRG() {
  115 + return abortionRG;
  116 + }
  117 +
  118 + public void setAbortionRG(Integer abortionRG) {
  119 + this.abortionRG = abortionRG;
  120 + }
  121 +
101 122 public String getPid() {
102 123 return pid;
103 124 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/AntExcAddRequest.java View file @ 9b3c5cb
... ... @@ -194,6 +194,27 @@
194 194 //实验结果
195 195 private String syjg;
196 196  
  197 + //自然流产
  198 + private Integer abortionZR;
  199 + //人工流产
  200 + private Integer abortionRG;
  201 +
  202 + public Integer getAbortionZR() {
  203 + return abortionZR;
  204 + }
  205 +
  206 + public void setAbortionZR(Integer abortionZR) {
  207 + this.abortionZR = abortionZR;
  208 + }
  209 +
  210 + public Integer getAbortionRG() {
  211 + return abortionRG;
  212 + }
  213 +
  214 + public void setAbortionRG(Integer abortionRG) {
  215 + this.abortionRG = abortionRG;
  216 + }
  217 +
197 218 public String getBg() {
198 219 return bg;
199 220 }
... ... @@ -938,6 +959,9 @@
938 959 if(StringUtils.isNotEmpty(dueDate)){
939 960 antExChuModel.setDueDate(DateUtil.parseYMD(dueDate));
940 961 }
  962 +
  963 + antExChuModel.setAbortionRG(abortionRG);
  964 + antExChuModel.setAbortionZR(abortionZR);
941 965  
942 966 return antExChuModel;
943 967 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexChuResult.java View file @ 9b3c5cb
... ... @@ -213,6 +213,27 @@
213 213 //是否有产筛
214 214 private int hasSieve;
215 215  
  216 + //自然流产
  217 + private Integer abortionZR;
  218 + //人工流产
  219 + private Integer abortionRG;
  220 +
  221 + public Integer getAbortionZR() {
  222 + return abortionZR;
  223 + }
  224 +
  225 + public void setAbortionZR(Integer abortionZR) {
  226 + this.abortionZR = abortionZR;
  227 + }
  228 +
  229 + public Integer getAbortionRG() {
  230 + return abortionRG;
  231 + }
  232 +
  233 + public void setAbortionRG(Integer abortionRG) {
  234 + this.abortionRG = abortionRG;
  235 + }
  236 +
216 237 public String getIsSieve() {
217 238 return isSieve;
218 239 }
... ... @@ -991,6 +1012,9 @@
991 1012 setLastMenses(DateUtil.getyyyy_MM_dd(antExChuModel.getLastMenses()));
992 1013 }
993 1014 setcDueWeek(antExChuModel.getcDueWeek());
  1015 +
  1016 + setAbortionZR(abortionZR);
  1017 + setAbortionRG(abortionRG);
994 1018 }
995 1019 return this;
996 1020 }