|
@@ -1,5 +1,6 @@
|
|
|
package com.aidex.system.domain;
|
|
|
|
|
|
+import com.aidex.common.annotation.Excel;
|
|
|
import com.aidex.common.core.page.PageDomain;
|
|
|
import com.alibaba.fastjson2.annotation.JSONField;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
@@ -23,6 +24,14 @@ public class SysAlarmPlush implements Serializable {
|
|
|
|
|
|
private static final long serialVersionUID = 9151139885836328101L;
|
|
|
|
|
|
+ /** 起止时间-用于查询 **/
|
|
|
+ @Excel(name = "船只名称", width = 30)
|
|
|
+ private String shipName;
|
|
|
+
|
|
|
+ /** 报警类型[参照报警字段对应表] 只取类型为6的 **/
|
|
|
+ @Excel(name = "报警类型", dictType = "sys_alarm_type")
|
|
|
+ private String classify;
|
|
|
+
|
|
|
/** 主键 **/
|
|
|
private long id;
|
|
|
|
|
@@ -37,17 +46,13 @@ public class SysAlarmPlush implements Serializable {
|
|
|
|
|
|
/** 报警时间(utc) 毫秒数时间戳 **/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
+ @Excel(name = "报警时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date pTime;
|
|
|
|
|
|
/** 添加时间(utc) 毫秒数时间戳 **/
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date addTime;
|
|
|
|
|
|
- /** 纬度 **/
|
|
|
- private String lat;
|
|
|
-
|
|
|
- /** 经度 **/
|
|
|
- private String lon;
|
|
|
|
|
|
/** 地图纬度,默认百度纬度 **/
|
|
|
private String mapLat;
|
|
@@ -56,21 +61,33 @@ public class SysAlarmPlush implements Serializable {
|
|
|
private String mapLon;
|
|
|
|
|
|
/** 速度 **/
|
|
|
+ @Excel(name = "船只速度", width = 30)
|
|
|
private String speed;
|
|
|
|
|
|
+ /** 纬度 **/
|
|
|
+ @Excel(name = "纬度", width = 30)
|
|
|
+ private String lat;
|
|
|
+
|
|
|
+ /** 经度 **/
|
|
|
+ @Excel(name = "经度", width = 30)
|
|
|
+ private String lon;
|
|
|
+
|
|
|
+
|
|
|
/** 方向 **/
|
|
|
+ @Excel(name = "方向", width = 30)
|
|
|
private String dir;
|
|
|
|
|
|
- /** 报警类型[参照报警字段对应表] 只取类型为6的 **/
|
|
|
- private String classify;
|
|
|
+
|
|
|
|
|
|
/** 报警类型[扩展] **/
|
|
|
+ @Excel(name = "描述", width = 30)
|
|
|
private String describe;
|
|
|
|
|
|
/** 描述信息 **/
|
|
|
private String notea;
|
|
|
|
|
|
/** 状态(0未处理 1已处理) **/
|
|
|
+ @Excel(name = "状态", dictType = "sys_alarm_status")
|
|
|
private String status;
|
|
|
|
|
|
/** 起止时间-用于查询 **/
|
|
@@ -79,8 +96,7 @@ public class SysAlarmPlush implements Serializable {
|
|
|
/** 起止时间-用于查询 **/
|
|
|
private String endTime;
|
|
|
|
|
|
- /** 起止时间-用于查询 **/
|
|
|
- private String shipName;
|
|
|
+
|
|
|
|
|
|
/**
|
|
|
* 当前实体分页对象
|