From 8b7258c9427882bb1798f1502eaa35184c6e374e Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Fri, 09 Aug 2024 14:29:18 +0800
Subject: [PATCH] 短信指定楼栋发送

---
 src/main/java/org/springblade/modules/house/vo/HouseVO.java |   63 ++++++++++++++++++++++++++++++-
 1 files changed, 61 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/springblade/modules/house/vo/HouseVO.java b/src/main/java/org/springblade/modules/house/vo/HouseVO.java
index 8f5a0fb..3f3af0f 100644
--- a/src/main/java/org/springblade/modules/house/vo/HouseVO.java
+++ b/src/main/java/org/springblade/modules/house/vo/HouseVO.java
@@ -16,10 +16,13 @@
  */
 package org.springblade.modules.house.vo;
 
-import org.springblade.modules.house.entity.HouseEntity;
-import org.springblade.core.tool.node.INode;
+import io.swagger.annotations.ApiModelProperty;
 import lombok.Data;
 import lombok.EqualsAndHashCode;
+import org.springblade.modules.house.entity.HouseEntity;
+
+import java.util.ArrayList;
+import java.util.List;
 
 /**
  * 房屋 视图实体类
@@ -32,4 +35,60 @@
 public class HouseVO extends HouseEntity {
 	private static final long serialVersionUID = 1L;
 
+	/**
+	 * 拼接地址
+	 */
+	private String address;
+
+	/**
+	 * 街道编号
+	 */
+	private String streetCode;
+	/**
+	 * 街道名称
+	 */
+	private String townStreetName;
+	/**
+	 * 社区编号
+	 */
+	private String neiCode;
+	/**
+	 * 社区名称
+	 */
+	private String neiName;
+	/**
+	 * 网格名称
+	 */
+	private String gridName;
+
+	/**
+	 * 区域编号
+	 */
+	private String regionCode;
+
+	/**
+	 * 标签id
+	 */
+	private Integer labelId;
+
+	//	标签父级id
+	private Integer parentId;
+
+	// 角色名称
+	@ApiModelProperty(value = "角色名称", example = "")
+	private String roleName;
+
+	// 社区编号
+	@ApiModelProperty(value = "社区编号", example = "")
+	private String communityCode;
+
+	private List<UserHouseLabelVO> userHouseLabelVOList = new ArrayList<>();
+
+	/**
+	 * 标签id
+	 */
+	private Integer status;
+
+	@ApiModelProperty(value = "编码", example = "")
+	private String code;
 }

--
Gitblit v1.9.3