Commit 5b66c4543c019d10d47641a1fb0dfa5057b41b6a

Authored by liquanyu
1 parent 0541c5ee3e

终止妊娠

Showing 2 changed files with 12 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java View file @ 5b66c45
... ... @@ -690,6 +690,7 @@
690 690 result.setExpType(p.getExpType());
691 691  
692 692 result.setPid(p.getPid());
  693 + result.setDueStatus(p.getDueStatus());
693 694 return result;
694 695 }
695 696  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java View file @ 5b66c45
... ... @@ -130,6 +130,17 @@
130 130  
131 131 private String pid;
132 132  
  133 + //分娩状态 0未终止妊娠 1终止妊娠
  134 + private Integer dueStatus;
  135 +
  136 + public Integer getDueStatus() {
  137 + return dueStatus;
  138 + }
  139 +
  140 + public void setDueStatus(Integer dueStatus) {
  141 + this.dueStatus = dueStatus;
  142 + }
  143 +
133 144 public String getPid() {
134 145 return pid;
135 146 }