吉安感知网项目-后端
linwei
2026-01-14 dffbf62efbb7f772f70170143e14495fd8a17f34
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.sxkj.fw.record.entity;
 
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.core.mp.base.BaseEntity;
 
import java.math.BigDecimal;
import java.time.LocalTime;
import java.util.Date;
 
/**
 * 无人机告警表 实体类
 *
 * @author lw
 * @since 2026-01-08
 */
@Data
@TableName("ja_fw_drone_alarm_record")
@ApiModel(value = "FwDroneAlarmRecord对象", description = "无人机告警表")
@EqualsAndHashCode(callSuper = true)
public class FwDroneAlarmRecordEntity extends BaseEntity {
 
    /**
     * 反无设备ID(关联ja_fw_device.id)
     */
    @TableField("device_id")
    @ApiModelProperty(value = "反无设备ID(关联ja_fw_device.id)")
    private Long deviceId;
    /**
     * 无人机名称
     */
    @TableField("drone_name")
    @ApiModelProperty(value = "无人机名称")
    private String droneName;
    /**
     * 无人机序列号
     */
    @TableField("drone_serial_no")
    @ApiModelProperty(value = "无人机序列号")
    private String droneSerialNo;
    /**
     * 无人机类型(微型机/植保机...)
     */
    @TableField("drone_type")
    @ApiModelProperty(value = "无人机类型(微型机/植保机...)")
    private String droneType;
    /**
     * 告警类型:实时告警/历史告警
     */
    @TableField("alarm_type")
    @ApiModelProperty(value = "告警类型:实时告警/历史告警")
    private String alarmType;
    /**
     * 告警时间
     */
    @TableField("alarm_time")
    @ApiModelProperty(value = "告警时间")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date alarmTime;
    /**
     * 触发原因
     */
    @TableField("trigger_reason")
    @ApiModelProperty(value = "触发原因")
    private String triggerReason;
    /**
     * 飞行状态:侦测中/反制中
     */
    @TableField("flight_status")
    @ApiModelProperty(value = "飞行状态:侦测中/反制中")
    private String flightStatus;
    /**
     * 当前经度
     */
    @TableField("longitude")
    @ApiModelProperty(value = "当前经度")
    private Double longitude;
    /**
     * 当前纬度
     */
    @TableField("latitude")
    @ApiModelProperty(value = "当前纬度")
    private Double latitude;
    /**
     * 信号频段(MHz)
     */
    @TableField("signal_freq_mhz")
    @ApiModelProperty(value = "信号频段(MHz)")
    private Integer signalFreqMhz;
    /**
     * 飞行高度(m)
     */
    @TableField("flight_height_m")
    @ApiModelProperty(value = "飞行高度(m)")
    private Integer flightHeightM;
    /**
     * 飞行速度(m/s)
     */
    @TableField("flight_speed_ms")
    @ApiModelProperty(value = "飞行速度(m/s)")
    private BigDecimal flightSpeedMs;
    /**
     * 停留时长 (秒)
     */
    @TableField("stay_duration")
    @ApiModelProperty(value = "停留时长(秒)")
     private String stayDuration;
    /**
     * 反制方式:信号干扰/诱导驱离/无
     */
    @TableField("counter_way")
    @ApiModelProperty(value = "反制方式:信号干扰/诱导驱离/无")
    private String counterWay;
    /**
     * 区域id ja_fw_area_divide
     */
    @TableField("area_divide_id")
    @ApiModelProperty(value = "区域id ja_fw_area_divide")
    private String areaDivideId;
    /**
     * 场景id ja_fw_defense_scene.id
     */
    @TableField("defense_scene_id")
    @ApiModelProperty(value = "场景id ja_fw_defense_scene.id")
    private String defenseSceneId;
    /**
     * 区域编码
     */
    @TableField("area_code")
    @ApiModelProperty(value = "区域编码")
    private String areaCode;
 
    /**
     * 设备类型(察打一体/便捷侦测箱/反制枪)
     */
    @TableField("device_type")
    @ApiModelProperty(value = "设备类型(察打一体/便捷侦测箱/反制枪)")
    private String deviceType;
 
    /**
     * 区域名称
     */
    @TableField("area_name")
    @ApiModelProperty(value = "区域名称")
    private String areaName;
    /**
     *  设备编号
     */
    @TableField("device_sn")
    @ApiModelProperty(value = "设备编号")
    private String deviceSn;
 
}