From 8d5b8a8c1909be6cdca5228a01bdc017b85a4078 Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Wed, 21 Jan 2026 15:37:17 +0800
Subject: [PATCH] 处理Vo继承entity问题
---
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