From 54ea22440a1dc6a260e3bd982f407ec518a75cef Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Fri, 09 Jan 2026 17:06:43 +0800
Subject: [PATCH] 数据驾驶舱优化
---
drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/entity/FwEffectEvalEntity.java | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/entity/FwEffectEvalEntity.java b/drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/entity/FwEffectEvalEntity.java
index f9e6b5c..4335830 100644
--- a/drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/entity/FwEffectEvalEntity.java
+++ b/drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/entity/FwEffectEvalEntity.java
@@ -44,6 +44,10 @@
@TableField("alarm_record_id")
@ApiModelProperty(value = "告警记录ID(ja_fw_drone_alarm_record.id)")
private Long alarmRecordId;
+
+ @TableField("counter_way")
+ @ApiModelProperty(value = "反制方式:1.信号干扰/2.诱导驱离/无")
+ private String counterWay;
/**
* 反制设备ID(ja_fw_device.id)
*/
@@ -102,7 +106,7 @@
* 反制效果(success/fail)
*/
@TableField("counter_effect")
- @ApiModelProperty(value = "反制效果(success/fail)")
+ @ApiModelProperty(value = "反制效果(1.success/2.fail)")
private String counterEffect;
/**
* 部署经度(冗余)
@@ -126,7 +130,7 @@
* 工作模式(机动/固定)
*/
@TableField("work_mode")
- @ApiModelProperty(value = "工作模式(机动/固定)")
+ @ApiModelProperty(value = "工作模式(1.机动/2.固定)")
private String workMode;
/**
* 区域编码
--
Gitblit v1.9.3