Commit 20855be8f860158a63d360fd7633de9545bb2b31

Authored by gengxiaokai
1 parent e781d7a643

威海产后观察

Showing 3 changed files with 24 additions and 3 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/Records.java View file @ 20855be
... ... @@ -14,7 +14,8 @@
14 14 private String postId;//产后观察基本表ID
15 15 private String date;//时间
16 16 private String tw;//体温
17   - private String xy;//血压
  17 + private String xy;//血压(舒张压)
  18 + private String ssy;//血压(收缩压)
18 19 private String mb;//脉搏
19 20 private String xybhd;//血氧饱和度
20 21 private String gd;//宫底
... ... @@ -27,6 +28,14 @@
27 28 private String isDelete;//是否有效(0:无效;1:有效)
28 29 private String created;//创建时间
29 30 private String modified;//修改时间
  31 +
  32 + public String getSsy() {
  33 + return ssy;
  34 + }
  35 +
  36 + public void setSsy(String ssy) {
  37 + this.ssy = ssy;
  38 + }
30 39  
31 40 public String getPostId() {
32 41 return postId;
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/PostpartumRecordsFacade.java View file @ 20855be
... ... @@ -252,6 +252,8 @@
252 252 String pregnancyOut = "";
253 253 if("1".equals(baby.getBabyGender())){
254 254 sex = "男";
  255 + }else{
  256 + sex = "女";
255 257 }
256 258 if(baby.getPregnancyOut() != null){
257 259 if("活产".equals(RenShenJieJuEnums.getTitle(baby.getPregnancyOut()))){
... ... @@ -503,7 +505,7 @@
503 505 pRecords.setParentId(postpartumRecordsAddRequest.getParentId());
504 506 pRecords.setMaternalDeliverId(postpartumRecordsAddRequest.getMaternalDeliverId());
505 507 pRecords.setHospitalId(hospitalId);
506   - pRecords.setTwoCxl(postpartumRecordsAddRequest.getOneCxl());
  508 + pRecords.setOneCxl(postpartumRecordsAddRequest.getOneCxl());
507 509 pRecords.setTwoCxl(postpartumRecordsAddRequest.getTwoCxl());
508 510 pRecords.setDoctor(String.valueOf(userId));
509 511 pRecords.setIsDelete("1");//有效数据
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/PostpartumRecordsAddRequest.java View file @ 20855be
... ... @@ -164,7 +164,8 @@
164 164 private String id;
165 165 private String date;//时间
166 166 private String tw;//体温
167   - private String xy;//血压
  167 + private String xy;//血压(舒张压)
  168 + private String ssy;//血压(收缩压)
168 169 private String mb;//脉搏
169 170 private String xybhd;//血氧饱和度
170 171 private String gd;//宫底
... ... @@ -186,6 +187,7 @@
186 187 record.setDate(date);
187 188 record.setTw(tw);
188 189 record.setXy(xy);
  190 + record.setSsy(ssy);
189 191 record.setMb(mb);
190 192 record.setXybhd(xybhd);
191 193 record.setGd(gd);
... ... @@ -197,6 +199,14 @@
197 199 record.setQm(qm);
198 200  
199 201 return record;
  202 + }
  203 +
  204 + public String getSsy() {
  205 + return ssy;
  206 + }
  207 +
  208 + public void setSsy(String ssy) {
  209 + this.ssy = ssy;
200 210 }
201 211  
202 212 public String getId() {