From 7bcd0d2d7510cb2ba67099cd768e1b2b6d047dc2 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Thu, 22 Feb 2024 17:16:27 +0800
Subject: [PATCH] 投票人员查询优化
---
src/main/java/org/springblade/modules/place/entity/PlaceEntity.java | 82 ++++++++++++++++++++++++++++++++++++++---
1 files changed, 76 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..a8970c8 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,34 @@
*/
@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 = "场所负责人身份证号", example = "")
+ @TableField("principal_id_card")
+ private String principalIdCard;
+
+ /**
+ * 场所负责人联系电话
+ */
+ @ApiModelProperty(value = "场所负责人联系电话")
+ @JsonSerialize(using = ToStringSerializer.class)
+ private String principalPhone;
+
/**
* 场所名称
*/
@@ -87,7 +109,7 @@
* 位置
*/
@ApiModelProperty(value = "位置")
- private String localtion;
+ private String location;
/**
* 场所照片
*/
@@ -95,10 +117,58 @@
private String imageUrls;
/**
- * 网格id
+ * 网格编号
*/
- @ApiModelProperty(value = "网格id")
- private Integer gridId;
+ @ApiModelProperty(value = "网格编号")
+ private String gridCode;
+
+ /**
+ * 警务网格编号
+ */
+ @ApiModelProperty(value = "警务网格编号")
+ private String jwGridCode;
+
+ /**
+ * 状态 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