From 80e92afd0d242399d20fab772dcb1b5c265f2bb9 Mon Sep 17 00:00:00 2001 From: xiebin <vip_xiaobin810@163.com> Date: Thu, 22 Jan 2026 11:18:29 +0800 Subject: [PATCH] update --- drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdTaskResultEntity.java | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdTaskResultEntity.java b/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdTaskResultEntity.java index 5fdb2d1..4f592e7 100644 --- a/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdTaskResultEntity.java +++ b/drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdTaskResultEntity.java @@ -63,15 +63,20 @@ @ApiModelProperty(value = "照片数据(JSON格式)") private String photoData; /** - * 位置(经纬度) + * 经度 */ - @ApiModelProperty(value = "位置(经纬度)") - private byte[] location; + @ApiModelProperty(value = "经度") + private Double longitude; + /** + * 纬度 + */ + @ApiModelProperty(value = "纬度") + private Double latitude; /** * 分发事件状态:0未分发、1已分发、2已驳回 */ @ApiModelProperty(value = "分发事件状态:0未分发、1已分发、2已驳回") - private Byte distributeStatus; + private Integer distributeStatus; /** * 区域编码 */ -- Gitblit v1.9.3