From f94f59a54dc86cba0a8c9035d11fe9947c8e6854 Mon Sep 17 00:00:00 2001 From: zhongrj <646384940@qq.com> Date: Mon, 25 Mar 2024 16:33:26 +0800 Subject: [PATCH] 文章新增字段,反诈文章查看记录浏览记录积分 --- src/main/java/org/springblade/modules/task/entity/ECallEventEntity.java | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/src/main/java/org/springblade/modules/task/entity/ECallEventEntity.java b/src/main/java/org/springblade/modules/task/entity/ECallEventEntity.java index cf688f8..79ef383 100644 --- a/src/main/java/org/springblade/modules/task/entity/ECallEventEntity.java +++ b/src/main/java/org/springblade/modules/task/entity/ECallEventEntity.java @@ -77,6 +77,29 @@ @ApiModelProperty(value = "发生地点") private String scene; /** + * 事发位置 + */ + @ApiModelProperty(value = "事发位置") + private String location; + /** + * 事发地经度 + */ + @ApiModelProperty(value = "事发地经度") + private String lng; + + /** + * 事发地纬度 + */ + @ApiModelProperty(value = "事发地纬度") + private String lat; + + /** + * 事发位置地址 + */ + @ApiModelProperty(value = "事发位置地址") + private String address; + + /** * 发生时间 */ @ApiModelProperty(value = "发生时间") -- Gitblit v1.9.3