package com.panzhihua.service_community.model.dos;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
/**
|
* <p>
|
* 楼栋表
|
* </p>
|
*
|
* @author xyh
|
* @since 2021-06-10
|
*/
|
@Data
|
@TableName(value = "com_mng_building")
|
public class ComMngBuildingDO implements Serializable {
|
|
private static final long serialVersionUID = 7264872297827113113L;
|
|
@TableId(value = "id", type = IdType.INPUT)
|
private Long id;
|
/**
|
* 街道Id
|
*/
|
private Long streetId;
|
|
/**
|
* 社区id
|
*/
|
private Long actId;
|
|
/**
|
* 小区ID
|
*/
|
private Long villageId;
|
|
/**
|
* 楼栋号
|
*/
|
private String name;
|
|
/**
|
* 楼层数量
|
*/
|
private Integer buildFloorSum;
|
|
/**
|
* 每个楼层有多少户
|
*/
|
private Integer everyFloorSum;
|
|
/**
|
* 栋楼总共有多少户
|
*/
|
private Integer buildUserSum;
|
|
/**
|
* 建筑类型(高层、洋房等)
|
*/
|
private String buildType;
|
|
/**
|
* 使用类型
|
*/
|
private String useType;
|
|
/**
|
* 建成时间
|
*/
|
private Date buildDate;
|
|
/**
|
* 单元数
|
*/
|
private Integer unitTotal;
|
|
/**
|
* 电梯数
|
*/
|
private Integer elevatorTotal;
|
|
/**
|
* 楼栋状态(在用、待拆迁等)
|
*/
|
private Long buildStatus;
|
|
/**
|
* 层次递归字段(街道>社区>小区>楼栋)
|
*/
|
private String path;
|
|
/**
|
* 经度
|
*/
|
private String lng;
|
|
/**
|
* 维度
|
*/
|
private String lat;
|
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
|
/**
|
* 更新时间
|
*/
|
private Date updateAt;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
private String gridId;
|
}
|