| | |
| | | package com.panzhihua.service_community.model.dos; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.baomidou.mybatisplus.annotation.*; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | |
| | | /** |
| | | * 自增id |
| | | */ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** |
| | |
| | | |
| | | /** |
| | | * 建筑状态 |
| | | * 1 建设中 |
| | | * 2 使用中 |
| | | */ |
| | | private boolean status; |
| | | private Integer state; |
| | | |
| | | /** |
| | | * 楼层类型id |
| | | * 楼层类型 |
| | | */ |
| | | private Long layerTypeId; |
| | | private String layerType; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Date createAt; |
| | | /** |
| | | * 社区id |
| | | */ |
| | | private Long communityId; |
| | | } |