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/house/vo/HouseholdLabelVO.java | 28 +++++++++++++++++++++++++---
1 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/src/main/java/org/springblade/modules/house/vo/HouseholdLabelVO.java b/src/main/java/org/springblade/modules/house/vo/HouseholdLabelVO.java
index bf7eb97..88d3913 100644
--- a/src/main/java/org/springblade/modules/house/vo/HouseholdLabelVO.java
+++ b/src/main/java/org/springblade/modules/house/vo/HouseholdLabelVO.java
@@ -16,10 +16,11 @@
*/
package org.springblade.modules.house.vo;
-import org.springblade.modules.house.entity.HouseholdLabelEntity;
-import org.springblade.core.tool.node.INode;
import lombok.Data;
import lombok.EqualsAndHashCode;
+import org.springblade.modules.house.entity.UserHouseLabelEntity;
+
+import java.util.List;
/**
* 住户-标签 视图实体类
@@ -29,7 +30,28 @@
*/
@Data
@EqualsAndHashCode(callSuper = true)
-public class HouseholdLabelVO extends HouseholdLabelEntity {
+public class HouseholdLabelVO extends UserHouseLabelEntity {
private static final long serialVersionUID = 1L;
+
+ private String communityName;
+
+ private String regionName;
+ private String regionCode;
+
+ private String communityCode;
+
+ // 刑释解教人员
+// 肇事肇祸精神障碍患者
+// 一般精神障碍患者
+// 重点对象
+// 取保候审
+ private Integer number1;
+ private Integer number2;
+ private Integer number3;
+ private Integer number4;
+ private Integer number5;
+
+ private List<Integer> ListId;
+
}
--
Gitblit v1.9.3