吉安感知网项目-后端
linwei
2026-06-23 ebeb43ea497fafc448c827d1de6796bcaa4e0b52
drone-service/drone-gd/src/main/java/org/sxkj/gd/workorder/entity/GdTaskResultEntity.java
@@ -32,9 +32,8 @@
 * @since 2026-01-14
 */
@Data
@TableName("ja_gd_task_result")
@ApiModel(value = "GdTaskResult对象", description = "成果表")
@EqualsAndHashCode(callSuper = true)
@TableName(value = "ja_gd_task_result", autoResultMap = true) // 必须开启 autoResultMap
 @EqualsAndHashCode(callSuper = true)
public class GdTaskResultEntity extends BaseEntity {
   /**
@@ -82,5 +81,16 @@
    */
   @ApiModelProperty(value = "区域编码")
   private String areaCode;
   /**
    * 附件类型:1媒体文件; 2ai文件; 3主视频;
    */
   @ApiModelProperty(value = "附件类型:1媒体文件; 2ai文件; 3主视频;")
   private Integer attachmentType;
   /**
    * GeoJSON格式数据
    */
   @ApiModelProperty(value = "GeoJSON格式数据")
   private String geojson;
}