sunhh 2 éve
szülő
commit
7e69b0a852

+ 21 - 13
business-service/src/main/java/com/ozs/entity/MsgAlarmFrequency.java

@@ -2,7 +2,6 @@ package com.ozs.entity;
 
 import com.baomidou.mybatisplus.annotation.IdType;
 import com.baomidou.mybatisplus.annotation.TableId;
-import com.ozs.common.annotation.Excel;
 import com.ozs.common.core.domain.BaseEntity;
 import io.swagger.annotations.ApiModel;
 import lombok.AllArgsConstructor;
@@ -46,26 +45,40 @@ public class MsgAlarmFrequency extends BaseEntity implements Serializable {
      */
     private Date alarmTime;
 
+    /**
+     * 报警线路
+     */
+    private String railwayCode;
+
+    /**
+     * 报警行别 : 1上行2下行 line_dir
+     */
+    private Integer lineDir;
+
+    /**
+     * 报警里程位置alarm_mile
+     */
+    private Integer alarmMile;
+
     /**
      * 报警内容
      */
     private String content;
 
     /**
-     * 报警置信度(百分比)
+     * 报警级别alarm_level
      */
-    private Integer alarmConfidence;
+    private Integer alarmLevel;
 
     /**
-     * 报警病害类型(目前只有1泥石流,后续可扩展使用)
+     * 报警置信度(百分比
      */
-    private Integer alarmType;
-    
+    private Integer alarmConfidence;
 
     /**
-     * 报警图片地址
+     * 报警病害类型(1泥石流2异物侵线 3断轨监测)
      */
-    private String imageUrl;
+    private Integer alarmType;
 
     /**
      * 创建人
@@ -91,9 +104,4 @@ public class MsgAlarmFrequency extends BaseEntity implements Serializable {
      * 备注
      */
     private String remark;
-
-    /**
-     * 报警级别
-     */
-    private Integer alarmLevel;
 }