From 016e47ea961d84a186db0bbd45cd6d7eaaa57bc3 Mon Sep 17 00:00:00 2001 From: linwei <872216696@qq.com> Date: Fri, 26 Jan 2024 16:30:20 +0800 Subject: [PATCH] 文章添加小区id 字段 --- src/main/java/org/springblade/modules/place/entity/PlaceEntity.java | 26 ++++++++++++++++++++++---- 1 files changed, 22 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java b/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java index 2ebffa7..cabb3a3 100644 --- a/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java +++ b/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java @@ -103,7 +103,7 @@ * 位置 */ @ApiModelProperty(value = "位置") - private String localtion; + private String location; /** * 场所照片 */ @@ -111,10 +111,28 @@ private String imageUrls; /** - * 网格id + * 网格编号 */ - @ApiModelProperty(value = "网格id") - private Integer gridId; + @ApiModelProperty(value = "网格编号") + private String gridCode; + + /** + * 状态 1:待完善 2:已完善 + */ + @ApiModelProperty(value = "状态 1:待完善 2:已完善") + private Integer status; + + /** + * 来源 1:地址总表 2:国控采集 3:商超 + */ + @ApiModelProperty(value = "来源 1:地址总表 2:国控采集 3:商超") + private Integer source; + + /** + * 是否现场采集 1:是 2:否 + */ + @ApiModelProperty(value = "是否现场采集 1:是 2:否") + private Integer isScene; /** * 创建人 -- Gitblit v1.9.3