Переглянути джерело

add
废液管理
修改异常标识

lifang 3 місяців тому
батько
коміт
6451d2b54b

+ 3 - 0
nb-service-api/web-service-api/src/main/java/com/nb/web/api/feign/result/DoctorPatientMonitorResult.java

@@ -132,6 +132,9 @@ public class DoctorPatientMonitorResult implements Serializable {
     @ApiModelProperty(value = "输注开始时间,即本次运行开机时间")
     private Date infusionStartTime;
 
+    @ApiModelProperty("监控开始时间")
+    private Date monitorStartTime;
+
     @ApiModelProperty(value = "泵类型")
     private DeviceTypeEnum deviceType;
 

+ 2 - 0
nb-service/web-service/src/main/resources/mapper/bus/BusPatientMapper.xml

@@ -551,6 +551,7 @@
         <result column="assist_id" property="assistId"/>
         <result column="assist_nickname" property="assistNickname"/>
         <result column="abnormal" property="abnormal"/>
+        <result column="monitor_start_time" property="monitorStartTime"/>
     </resultMap>
     <select id="doctorSelectPatientList" resultMap="doctorMonitorResult">
         SELECT
@@ -569,6 +570,7 @@
         c.eval_time AS eval_time,        <!-- 评价时间 -->
         c.manage_type AS manage_type,
         c.abnormal as abnormal,
+        c.monitor_start_time as monitor_start_time
         <!-- 设备与输注信息 -->
         i.device_id AS device_id,
         d.alias AS device_alias,   <!-- 假设来自设备表,若未关联需调整 -->