Commit ef694faa923def97aa885121079f47c41e5ba5fd

Authored by liquanyu
1 parent 1531fc423f

秦皇岛初诊 复诊添加字段

Showing 3 changed files with 179 additions and 0 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ViewFacade.java View file @ ef694fa
... ... @@ -2509,6 +2509,18 @@
2509 2509 //围场孕妇产检新加字段nt
2510 2510 map.put("wcNt",data.getWcNt());
2511 2511  
  2512 + map.put("jw", data.getJw());
  2513 + map.put("yw", data.getYw());
  2514 + map.put("bun", data.getBun());
  2515 + map.put("cr", data.getCr());
  2516 + map.put("ua", data.getUa());
  2517 + map.put("rgaxa", data.getRgaxa());
  2518 + map.put("tf3", data.getTf3());
  2519 + map.put("tf4", data.getTf4());
  2520 + map.put("ctsh", data.getCtsh());
  2521 + map.put("ctgab", data.getCtgab());
  2522 +
  2523 +
2512 2524 //医生所在团队
2513 2525 if(StringUtils.isNotEmpty(data.getTeamId())){
2514 2526 DoctorTeam doctorTeam=new DoctorTeam();
... ... @@ -3428,6 +3440,10 @@
3428 3440 map.put("ssy", ssy); // 血压
3429 3441 map.put("szy", szy); // 血压
3430 3442 map.put("yn", data.getYn()); //
  3443 +
  3444 + map.put("bloodSugarKf", data.getBloodSugarKf());
  3445 + map.put("bloodSugar1h", data.getBloodSugar1h());
  3446 + map.put("bloodSugar2h", data.getBloodSugar2h());
3431 3447  
3432 3448 br.setErrorcode(ErrorCodeConstants.SUCCESS);
3433 3449 br.setErrormsg("成功");
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntenatalExaminationResult.java View file @ ef694fa
... ... @@ -119,6 +119,8 @@
119 119 //羊水量
120 120 private String bamnio;
121 121  
  122 +
  123 +
122 124 public String getBamnio() {
123 125 return bamnio;
124 126 }
... ... @@ -1160,6 +1162,38 @@
1160 1162 this.secondaryDiagnosis = secondaryDiagnosis;
1161 1163 }
1162 1164  
  1165 + //血糖
  1166 + //空腹
  1167 + private String bloodSugarKf;
  1168 + //1h
  1169 + private String bloodSugar1h;
  1170 + //2h
  1171 + private String bloodSugar2h;
  1172 +
  1173 + public String getBloodSugarKf() {
  1174 + return bloodSugarKf;
  1175 + }
  1176 +
  1177 + public void setBloodSugarKf(String bloodSugarKf) {
  1178 + this.bloodSugarKf = bloodSugarKf;
  1179 + }
  1180 +
  1181 + public String getBloodSugar1h() {
  1182 + return bloodSugar1h;
  1183 + }
  1184 +
  1185 + public void setBloodSugar1h(String bloodSugar1h) {
  1186 + this.bloodSugar1h = bloodSugar1h;
  1187 + }
  1188 +
  1189 + public String getBloodSugar2h() {
  1190 + return bloodSugar2h;
  1191 + }
  1192 +
  1193 + public void setBloodSugar2h(String bloodSugar2h) {
  1194 + this.bloodSugar2h = bloodSugar2h;
  1195 + }
  1196 +
1163 1197 @Override
1164 1198 public AntenatalExaminationResult convertToResult(AntenatalExaminationModel destModel) {
1165 1199  
... ... @@ -1330,6 +1364,9 @@
1330 1364 }
1331 1365 setTeamId(destModel.getTeamId());
1332 1366 setReason(destModel.getReason());
  1367 + setBloodSugarKf(destModel.getBloodSugarKf());
  1368 + setBloodSugar1h(destModel.getBloodSugar1h());
  1369 + setBloodSugar2h(destModel.getBloodSugar2h());
1333 1370 return this;
1334 1371 }
1335 1372  
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/AntexChuResult.java View file @ ef694fa
... ... @@ -674,7 +674,121 @@
674 674 private String teamId;//医生团队
675 675 private String reason;//换团队的原因
676 676  
  677 + //颈围
  678 + private String jw;
  679 + //腰围
  680 + private String yw;
677 681  
  682 +
  683 +
  684 + //BUN 尿素氮
  685 + private String bun;
  686 + //Cr肌酐
  687 + private String cr;
  688 + //UA尿酸
  689 + private String ua;
  690 + //r-谷氨酰胺转移酶
  691 + private String rgaxa;
  692 +
  693 + //FT3游离三碘甲状腺氨酸
  694 + public String tf3;
  695 + //FT4血清游离甲状腺素
  696 + public String tf4;
  697 + //促甲状腺激素(TSH)
  698 + public String ctsh;
  699 + //TGAb甲状腺球蛋白
  700 + public String ctgab;
  701 + //TPOAb抗甲状腺过氧化物抗体
  702 + public String ctpoab;
  703 +
  704 + public String getJw() {
  705 + return jw;
  706 + }
  707 +
  708 + public void setJw(String jw) {
  709 + this.jw = jw;
  710 + }
  711 +
  712 + public String getYw() {
  713 + return yw;
  714 + }
  715 +
  716 + public void setYw(String yw) {
  717 + this.yw = yw;
  718 + }
  719 +
  720 + public String getBun() {
  721 + return bun;
  722 + }
  723 +
  724 + public void setBun(String bun) {
  725 + this.bun = bun;
  726 + }
  727 +
  728 + public String getCr() {
  729 + return cr;
  730 + }
  731 +
  732 + public void setCr(String cr) {
  733 + this.cr = cr;
  734 + }
  735 +
  736 + public String getUa() {
  737 + return ua;
  738 + }
  739 +
  740 + public void setUa(String ua) {
  741 + this.ua = ua;
  742 + }
  743 +
  744 + public String getRgaxa() {
  745 + return rgaxa;
  746 + }
  747 +
  748 + public void setRgaxa(String rgaxa) {
  749 + this.rgaxa = rgaxa;
  750 + }
  751 +
  752 + public String getTf3() {
  753 + return tf3;
  754 + }
  755 +
  756 + public void setTf3(String tf3) {
  757 + this.tf3 = tf3;
  758 + }
  759 +
  760 + public String getTf4() {
  761 + return tf4;
  762 + }
  763 +
  764 + public void setTf4(String tf4) {
  765 + this.tf4 = tf4;
  766 + }
  767 +
  768 + public String getCtsh() {
  769 + return ctsh;
  770 + }
  771 +
  772 + public void setCtsh(String ctsh) {
  773 + this.ctsh = ctsh;
  774 + }
  775 +
  776 + public String getCtgab() {
  777 + return ctgab;
  778 + }
  779 +
  780 + public void setCtgab(String ctgab) {
  781 + this.ctgab = ctgab;
  782 + }
  783 +
  784 + public String getCtpoab() {
  785 + return ctpoab;
  786 + }
  787 +
  788 + public void setCtpoab(String ctpoab) {
  789 + this.ctpoab = ctpoab;
  790 + }
  791 +
678 792 public String getTeamId() {
679 793 return teamId;
680 794 }
... ... @@ -2308,6 +2422,18 @@
2308 2422  
2309 2423 setTeamId(antExChuModel.getTeamId());
2310 2424 setReason(antExChuModel.getReason());
  2425 + setJw(antExChuModel.getJw());
  2426 + setYw(antExChuModel.getYw());
  2427 + setBun(antExChuModel.getBun());
  2428 + setCr(antExChuModel.getCr());
  2429 + setUa(antExChuModel.getUa());
  2430 + setRgaxa(antExChuModel.getRgaxa());
  2431 + setTf3(antExChuModel.getTf3());
  2432 + setTf4(antExChuModel.getTf4());
  2433 + setCtsh(antExChuModel.getCtsh());
  2434 + setCtgab(antExChuModel.getCtgab());
  2435 + setCtpoab(antExChuModel.getCtpoab());
  2436 +
2311 2437 }
2312 2438 return this;
2313 2439 }