| | |
| | | */ |
| | | package org.springblade.modules.grid.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springblade.modules.grid.entity.GridEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import lombok.Data; |
| | |
| | | public class GridVO extends GridEntity { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | private String realName; |
| | | |
| | | private String gridPhone; |
| | | |
| | | /** |
| | | * 社区名称 |
| | | */ |
| | | private String communityName; |
| | | |
| | | /** |
| | | * 街道名称 |
| | | */ |
| | | private String townName; |
| | | |
| | | /** |
| | | * 区域编号 |
| | | */ |
| | | private String regionCode; |
| | | |
| | | /** |
| | | * 社区编号 |
| | | */ |
| | | private String communityCode; |
| | | |
| | | /** |
| | | * 角色名称 |
| | | */ |
| | | private String roleName; |
| | | |
| | | } |