| | |
| | | */ |
| | | 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; |
| | | |
| | | /** |
| | | * 房屋 视图实体类 |
| | |
| | | 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; |
| | | } |