| | |
| | | */ |
| | | package org.springblade.modules.district.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import org.springblade.modules.district.entity.DistrictEntity; |
| | | import org.springblade.core.tool.node.INode; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 小区表 视图实体类 |
| | |
| | | */ |
| | | private String communityName; |
| | | |
| | | /** |
| | | * 街道名称 |
| | | */ |
| | | private String townStreetName; |
| | | |
| | | /** |
| | | * 网格名称 |
| | | */ |
| | | private String gridName; |
| | | |
| | | /** |
| | | * 角色名称 |
| | | */ |
| | | private String roleName; |
| | | |
| | | private List<String> districtIdList; |
| | | |
| | | /** |
| | | * 区域编号 |
| | | */ |
| | | private String regionCode; |
| | | |
| | | // 是否过滤0 否 1 是 |
| | | private Integer filterFlag = 0; |
| | | /** |
| | | * 社区编号 |
| | | */ |
| | | @ApiModelProperty(value = "社区编号") |
| | | private String communityCode; |
| | | |
| | | |
| | | private String organizationName; |
| | | |
| | | //组织类型 |
| | | private String organizationType; |
| | | |
| | | |
| | | //支部类型 |
| | | private String branchType; |
| | | |
| | | //负责人姓名 |
| | | private String chargePerson; |
| | | |
| | | //负责人手机号 |
| | | private String phone; |
| | | |
| | | } |