From 89fd0b6ff97e90220376cec824eaf8eabb9d0a3e Mon Sep 17 00:00:00 2001 From: linwei <872216696@qq.com> Date: Tue, 04 Aug 2026 08:18:45 +0800 Subject: [PATCH] refactor(GdClueEventService): 优化线索事件查询逻辑 --- drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdTaskResultEntity.java | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 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 6a95be7..053dfb5 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 @@ -82,9 +82,15 @@ @ApiModelProperty(value = "区域编码") private String areaCode; /** - * 附件类型:0图片 1视频 2其他 + * 附件类型:1媒体文件; 2ai文件; 3主视频; */ - @ApiModelProperty(value = "附件类型:0图片 1视频 2其他") + @ApiModelProperty(value = "附件类型:1媒体文件; 2ai文件; 3主视频;") private Integer attachmentType; + /** + * GeoJSON格式数据 + */ + @ApiModelProperty(value = "GeoJSON格式数据") + private String geojson; + } -- Gitblit v1.9.3