New file |
| | |
| | | package com.panzhihua.common.model.vos.community; |
| | | |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @program: springcloud_k8s_panzhihuazhihuishequ |
| | | * @description: 其他建筑 |
| | | * @author: huang.hongfa weixin hhf9596 qq 959656820 |
| | | * @create: 2020-12-14 17:22 |
| | | **/ |
| | | @Data |
| | | @ApiModel("其他建筑-入参") |
| | | public class ComMngStructOtherBuildVO { |
| | | |
| | | @ApiModelProperty("自增id") |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("建筑名称") |
| | | private String name; |
| | | |
| | | @ApiModelProperty("建筑类型id") |
| | | private Long typeId; |
| | | |
| | | @ApiModelProperty("面积") |
| | | private Double square; |
| | | |
| | | @ApiModelProperty("建筑地址") |
| | | private String address; |
| | | |
| | | @ApiModelProperty("建筑状态 1建筑中 2使用中") |
| | | private Integer state; |
| | | |
| | | @ApiModelProperty("楼层类型 高层 中层 底层") |
| | | private String layerType; |
| | | |
| | | @ApiModelProperty("创建时间") |
| | | private Date createAt; |
| | | |
| | | @ApiModelProperty(value = "当前页数",example = "1") |
| | | private Long pageNum; |
| | | |
| | | @ApiModelProperty(value = "每页记录数",example = "10") |
| | | private Long pageSize; |
| | | |
| | | @ApiModelProperty("建筑类型名字") |
| | | private String buileTypeName; |
| | | |
| | | @ApiModelProperty("社区id") |
| | | private Long communityId; |
| | | } |