Jelajahi Sumber

add
废液管理
修改异常标识

lifang 2 bulan lalu
induk
melakukan
f7fa4e7cb9

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

@@ -169,6 +169,8 @@ public class DoctorPatientMonitorResult implements Serializable {
     @ApiModelProperty("评价状态 1、已评价 2、待评价 3、未评价")
     private Integer evaluate=3;
 
+    @ApiModelProperty("手术开始监控时间")
+    private Date monitorStartTime;
     private void judgeWarnWillFinished() {
         if(!Boolean.TRUE.equals(this.warnWillFinished)){
             return;

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

@@ -554,6 +554,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
@@ -572,6 +573,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,   <!-- 假设来自设备表,若未关联需调整 -->