Commit 2edff08457311372a6b9582a19e181ad277ff44d

Authored by liquanyu
1 parent d67c9cfa89

血氧

Showing 3 changed files with 2 additions and 47 deletions

platform-dal/src/main/java/com/lyms/platform/pojo/BloodOxygenModel.java View file @ 2edff08
... ... @@ -23,8 +23,6 @@
23 23 //脉搏
24 24 private String pulse;
25 25  
26   - //灌注指数
27   - private String perfusion;
28 26  
29 27 //血氧饱和度异常
30 28 private String bloodOxygenSaturationExc;
31 29  
... ... @@ -32,9 +30,8 @@
32 30 //脉搏异常
33 31 private String pulseExc;
34 32  
35   - //灌注指数异常
36   - private String perfusionExc;
37 33  
  34 +
38 35 private String hospitalId;
39 36  
40 37 //孕妇档案id
41 38  
... ... @@ -62,13 +59,7 @@
62 59 this.pulseExc = pulseExc;
63 60 }
64 61  
65   - public String getPerfusionExc() {
66   - return perfusionExc;
67   - }
68 62  
69   - public void setPerfusionExc(String perfusionExc) {
70   - this.perfusionExc = perfusionExc;
71   - }
72 63  
73 64 public String getId() {
74 65 return id;
75 66  
... ... @@ -94,13 +85,7 @@
94 85 this.pulse = pulse;
95 86 }
96 87  
97   - public String getPerfusion() {
98   - return perfusion;
99   - }
100 88  
101   - public void setPerfusion(String perfusion) {
102   - this.perfusion = perfusion;
103   - }
104 89  
105 90 public String getHospitalId() {
106 91 return hospitalId;
... ... @@ -148,7 +133,6 @@
148 133 "id='" + id + '\'' +
149 134 ", bloodOxygenSaturation='" + bloodOxygenSaturation + '\'' +
150 135 ", pulse='" + pulse + '\'' +
151   - ", perfusion='" + perfusion + '\'' +
152 136 ", hospitalId='" + hospitalId + '\'' +
153 137 ", patientId='" + patientId + '\'' +
154 138 ", pId='" + pId + '\'' +
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BloodOxygenFacade.java View file @ 2edff08
... ... @@ -87,19 +87,11 @@
87 87 item2.setPrintOrder("2");
88 88 item2.setUnit("BPM");
89 89 item2.setResultFlag(request.getPulseExc());
  90 + item1.setRef("60BPM~100BPM");
90 91  
91   - LisReportItemModel item3 = new LisReportItemModel();
92   - item3.setHospitalId(patient.getHospitalId());
93   - item3.setCharResult(request.getPerfusion());
94   - item3.setLisId(uuid);
95   - item3.setName("灌注指数");
96   - item3.setPrintOrder("3");
97   - item3.setUnit("%");
98   - item3.setResultFlag(request.getPerfusionExc());
99 92  
100 93 items.add(item1);
101 94 items.add(item2);
102   - items.add(item3);
103 95  
104 96 lisModel.setItemJson(JsonUtil.array2JsonString(items));
105 97 masterLisMapper.saveLisData(lisModel);
... ... @@ -123,7 +115,6 @@
123 115 map.put("created",DateUtil.getyyyy_MM_dd(model.getCreated()));
124 116 map.put("bloodOxygenSaturation",model.getBloodOxygenSaturation());
125 117 map.put("pulse",model.getPulse());
126   - map.put("perfusion",model.getPerfusion());
127 118 map.put("id",model.getId());
128 119 datas.add(map);
129 120 }
platform-operate-api/src/main/java/com/lyms/platform/operate/web/request/BloodOxygenRequest.java View file @ 2edff08
... ... @@ -24,12 +24,7 @@
24 24 //脉搏异常
25 25 private String pulseExc;
26 26  
27   - //灌注指数
28   - private String perfusion;
29 27  
30   - //灌注指数异常
31   - private String perfusionExc;
32   -
33 28 private String hospitalId;
34 29  
35 30 //孕妇档案id
36 31  
... ... @@ -46,11 +41,9 @@
46 41 BloodOxygenModel model = new BloodOxygenModel();
47 42 model.setBloodOxygenSaturation(bloodOxygenSaturation);
48 43 model.setPulse(pulse);
49   - model.setPerfusion(perfusion);
50 44  
51 45 model.setBloodOxygenSaturationExc(bloodOxygenSaturationExc);
52 46 model.setPulseExc(pulseExc);
53   - model.setPerfusionExc(perfusionExc);
54 47  
55 48 model.setHospitalId(hospitalId);
56 49 model.setId(id);
57 50  
... ... @@ -83,14 +76,7 @@
83 76 this.pulse = pulse;
84 77 }
85 78  
86   - public String getPerfusion() {
87   - return perfusion;
88   - }
89 79  
90   - public void setPerfusion(String perfusion) {
91   - this.perfusion = perfusion;
92   - }
93   -
94 80 public String getHospitalId() {
95 81 return hospitalId;
96 82 }
97 83  
... ... @@ -147,12 +133,6 @@
147 133 this.pulseExc = pulseExc;
148 134 }
149 135  
150   - public String getPerfusionExc() {
151   - return perfusionExc;
152   - }
153 136  
154   - public void setPerfusionExc(String perfusionExc) {
155   - this.perfusionExc = perfusionExc;
156   - }
157 137 }