10 changed files with 202 additions and 12 deletions
@ -0,0 +1,120 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* <p> |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.math.BigDecimal; |
|||
|
|||
|
|||
@Data |
|||
public class IcBulidingDetailDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
private String buildingId; |
|||
|
|||
/** |
|||
* 组织id |
|||
*/ |
|||
private String agencyId; |
|||
|
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
|
|||
/** |
|||
* 小区id |
|||
*/ |
|||
private String neighborHoodId; |
|||
|
|||
/** |
|||
* 楼栋名称 |
|||
*/ |
|||
private String buildingName; |
|||
|
|||
/** |
|||
* 楼栋类型 |
|||
*/ |
|||
private String type; |
|||
|
|||
|
|||
/** |
|||
* 排序 |
|||
*/ |
|||
private BigDecimal sort; |
|||
|
|||
/** |
|||
* 总单元数 |
|||
*/ |
|||
private Integer totalUnitNum; |
|||
|
|||
/** |
|||
* 总楼层总数 |
|||
*/ |
|||
private Integer totalFloorNum; |
|||
|
|||
/** |
|||
* 总户数 |
|||
*/ |
|||
private Integer totalHouseNum; |
|||
/** |
|||
* 坐标位置 |
|||
*/ |
|||
|
|||
private String location; |
|||
|
|||
|
|||
/** |
|||
* 中心点位:经度 |
|||
*/ |
|||
|
|||
private String longitude; |
|||
|
|||
/** |
|||
* 中心点位:纬度 |
|||
*/ |
|||
|
|||
private String latitude; |
|||
|
|||
/** |
|||
* 楼长姓名 |
|||
*/ |
|||
private String buildingLeaderName; |
|||
|
|||
/** |
|||
* 楼长电话 |
|||
*/ |
|||
private String buildingLeaderMobile; |
|||
|
|||
|
|||
/** |
|||
* 楼栋编码 |
|||
*/ |
|||
private String coding; |
|||
|
|||
/** |
|||
* 实有人口数 |
|||
*/ |
|||
private Integer realPerson; |
|||
|
|||
} |
Loading…
Reference in new issue