From b3b566ebdfed4005aaa513da3d5d2fd3924903cc Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Wed, 31 Jan 2024 16:17:54 +0800
Subject: [PATCH] 拿不到地址总表数据,不设置网格信息

---
 src/main/java/org/springblade/modules/place/entity/PlaceEntity.java |   70 ++++++++++++++++++++++++++++++++---
 1 files changed, 64 insertions(+), 6 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 e9edd1e..612bee6 100644
--- a/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java
+++ b/src/main/java/org/springblade/modules/place/entity/PlaceEntity.java
@@ -62,12 +62,28 @@
 	 */
 	@ApiModelProperty(value = "楼栋编码")
 	private String buildingCode;
+
 	/**
-	 * 场所负责人(关联用户表信息)
+	 * 场所负责人(关联用户表信息user_id)
 	 */
-	@ApiModelProperty(value = "场所负责人(关联用户表信息)")
+	@ApiModelProperty(value = "场所负责人(关联用户表信息user_id)")
 	@JsonSerialize(using = ToStringSerializer.class)
 	private Long principalUserId;
+
+	/**
+	 * 场所负责人
+	 */
+	@ApiModelProperty(value = "场所负责人")
+	@JsonSerialize(using = ToStringSerializer.class)
+	private String principal;
+
+	/**
+	 * 场所负责人联系电话
+	 */
+	@ApiModelProperty(value = "场所负责人联系电话")
+	@JsonSerialize(using = ToStringSerializer.class)
+	private String principalPhone;
+
 	/**
 	 * 场所名称
 	 */
@@ -87,7 +103,7 @@
 	 * 位置
 	 */
 	@ApiModelProperty(value = "位置")
-	private String localtion;
+	private String location;
 	/**
 	 * 场所照片
 	 */
@@ -95,10 +111,52 @@
 	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;
+
+	/**
+	 * 是否九小场所  1:是 2:否
+	 */
+	@ApiModelProperty(value = "是否九小场所  1:是 2:否")
+	private Integer isNine;
+
+	/**
+	 * 九小场所类型 字典 nineType
+	 */
+	@ApiModelProperty(value = "九小场所类型")
+	private Integer nineType;
+
+	/**
+	 * 是否阵地  1:是 2:否
+	 */
+	@ApiModelProperty(value = "是否阵地  1:是 2:否")
+	private Integer isFront;
+
+	/**
+	 * 阵地类型 字典 frontType
+	 */
+	@ApiModelProperty(value = "阵地类型")
+	private Integer frontType;
 
 	/**
 	 * 创建人

--
Gitblit v1.9.3