Commit b743b51ec188ad596651812211adeb5b7c86b0dd

Authored by liquanyu
1 parent fbf4fce061

诸城人民医院

Showing 1 changed file with 37 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexChuResult.java View file @ b743b51
... ... @@ -489,6 +489,38 @@
489 489 //心电图
490 490 public String electr;
491 491  
  492 + //妊娠方法
  493 + private Integer pregnancyMethod;
  494 + //符合月份 1是 2否
  495 + private Integer monthCompliance;
  496 +
  497 + //妊娠异常
  498 + private String pregnancyExcpetion;
  499 +
  500 + public Integer getPregnancyMethod() {
  501 + return pregnancyMethod;
  502 + }
  503 +
  504 + public void setPregnancyMethod(Integer pregnancyMethod) {
  505 + this.pregnancyMethod = pregnancyMethod;
  506 + }
  507 +
  508 + public Integer getMonthCompliance() {
  509 + return monthCompliance;
  510 + }
  511 +
  512 + public void setMonthCompliance(Integer monthCompliance) {
  513 + this.monthCompliance = monthCompliance;
  514 + }
  515 +
  516 + public String getPregnancyExcpetion() {
  517 + return pregnancyExcpetion;
  518 + }
  519 +
  520 + public void setPregnancyExcpetion(String pregnancyExcpetion) {
  521 + this.pregnancyExcpetion = pregnancyExcpetion;
  522 + }
  523 +
492 524 public String getTtita() {
493 525 return ttita;
494 526 }
... ... @@ -1816,6 +1848,11 @@
1816 1848 setLisCheckItems(antExChuModel.getLisCheckItems());
1817 1849  
1818 1850 setFirst(antExChuModel.getFirst() == null ? "" : String.valueOf(antExChuModel.getFirst()));
  1851 + setPregnancyMethod(antExChuModel.getPregnancyMethod());
  1852 + setPregnancyExcpetion(antExChuModel.getPregnancyExcpetion());
  1853 + setMonthCompliance(antExChuModel.getMonthCompliance());
  1854 +
  1855 +
1819 1856  
1820 1857 }
1821 1858 return this;