Commit 1fd2d857d2adfef7f19765435a400600f2ed5cf4

Authored by zhangchao
1 parent a085cb40bc
Exists in dev

#fix:优化产检初诊,新增胎数字段

Showing 2 changed files with 12 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntenatalExaminationResult.java View file @ 1fd2d85
... ... @@ -132,6 +132,7 @@
132 132 private String symptoms;//高危手册症状与体征
133 133 private String otherCheck;//高危手册其他检查项
134 134  
  135 +
135 136 public String getOther() {
136 137 return other;
137 138 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexChuResult.java View file @ 1fd2d85
... ... @@ -376,6 +376,16 @@
376 376 private String symptoms;//高危手册症状与体征
377 377 private String otherCheck;//高危手册其他检查项
378 378  
  379 + private Integer taishu;//胎数
  380 +
  381 + public Integer getTaishu() {
  382 + return taishu;
  383 + }
  384 +
  385 + public void setTaishu(Integer taishu) {
  386 + this.taishu = taishu;
  387 + }
  388 +
379 389 public String getOther() {
380 390 return other;
381 391 }
... ... @@ -2566,6 +2576,7 @@
2566 2576 setOther(antExChuModel.getOther());
2567 2577 setOtherCheck(antExChuModel.getOtherCheck());
2568 2578 setSymptoms(antExChuModel.getSymptoms());
  2579 + setTaishu(antExChuModel.getTaishu());
2569 2580 }
2570 2581 return this;
2571 2582 }