From 08ddfad4530a014094c06fe68b8c2d9a0753403a Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Wed, 05 Aug 2026 14:09:29 +0800
Subject: [PATCH] fix(gd): 修复线索事件查询中的SQL语法错误
---
drone-service/drone-fw/src/main/java/org/sxkj/fw/detection/entity/FwEffectEvalEntity.java | 12 ++++++++----
1 files changed, 8 insertions(+), 4 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..89cf90c 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)
*/
@@ -53,9 +57,9 @@
/**
* 反制设备编码(快照)
*/
- @TableField("device_code")
+ @TableField("device_sn")
@ApiModelProperty(value = "反制设备编码(快照)")
- private String deviceCode;
+ private String deviceSn;
/**
* 反制设备名称(快照)
*/
@@ -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