Quellcode durchsuchen

增加 formula 配方信息字段

wangzl vor 5 Monaten
Ursprung
Commit
e5ce6e1fd0

+ 2 - 0
pump-web/src/main/java/com/tuoren/web/layer/d0/PumpVo.java

@@ -40,6 +40,8 @@ public class PumpVo extends BusPumpEntity {
     private  String anesthesiaDoctor2;
     // 手术信息
     private  String operationName;
+    //配方
+    private  String formula;
     // 不在服务区
 //    private Boolean noSignal = false;
     // 医院ID

+ 3 - 1
pump-web/src/main/resources/mapper/BusPumpEntityMapper.xml

@@ -203,10 +203,12 @@
         pi.anesthesia_mode as anesthesiaMode,
         pi.anesthesia_doctor1,
         pi.anesthesia_doctor2,
+
 --         p.run_state as pumpRunState,
 --         p.hospital_code as pumpHospitalId,
 --         p.is_remove as pumpVisible,
-        pi.operation_name, p.* from bus_pump p
+        pi.operation_name,
+        pi.formula,p.* from bus_pump p
         LEFT JOIN  bus_patient pi
         on p.pump_code = pi.pump_code and p.patient_code = pi.patient_code and p.hospital_code = pi.hospital_code
         where