/*
|
* Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
|
*
|
* Redistribution and use in source and binary forms, with or without
|
* modification, are permitted provided that the following conditions are met:
|
*
|
* Redistributions of source code must retain the above copyright notice,
|
* this list of conditions and the following disclaimer.
|
* Redistributions in binary form must reproduce the above copyright
|
* notice, this list of conditions and the following disclaimer in the
|
* documentation and/or other materials provided with the distribution.
|
* Neither the name of the dreamlu.net developer nor the names of its
|
* contributors may be used to endorse or promote products derived from
|
* this software without specific prior written permission.
|
* Author: Chill 庄骞 (smallchill@163.com)
|
*/
|
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;
|
|
/**
|
* 小区表 视图实体类
|
*
|
* @author BladeX
|
* @since 2023-11-23
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
public class DistrictVO extends DistrictEntity {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 地址门牌编号
|
*/
|
private String houseCode;
|
|
/**
|
* 居委会名称
|
*/
|
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;
|
|
}
|