| | |
| | | package com.doumee.dao.business.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.doumee.core.model.LoginUserModel; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | @ExcelColumn(name="计租面积(平方米)") |
| | | private BigDecimal rentArea; |
| | | |
| | | @ApiModelProperty(value = "楼层数", example = "1") |
| | | @ExcelColumn(name="楼层数") |
| | | @ApiModelProperty(value = "楼层编码(关联yw_floor)", example = "1") |
| | | @ExcelColumn(name="楼层编码") |
| | | private Integer floor; |
| | | |
| | | @ApiModelProperty(value = "所属项目编码(关联yw_project)", example = "1") |
| | | @ExcelColumn(name="所属项目编码(关联yw_project)") |
| | | private Integer projectId; |
| | | |
| | | @ApiModelProperty(value = "所属项目编码(关联yw_building)", example = "1") |
| | | @ExcelColumn(name="所属项目编码(关联yw_building)") |
| | | @ApiModelProperty(value = "所属楼宇编码(关联yw_building)", example = "1") |
| | | @ExcelColumn(name="所属楼宇编码(关联yw_building)") |
| | | private Integer buildingId; |
| | | |
| | | @ApiModelProperty(value = "当前租赁状态:0=未租赁;1=已租赁") |
| | | private Integer leaseNowStatus; |
| | | |
| | | @ApiModelProperty(value = "退租到期日期,退租使用") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date leaseRentDate; |
| | | |
| | | @ApiModelProperty(value = "租赁状态:0=待租赁;1=已租赁 ;2=未开启租赁", example = "1") |
| | | @TableField(exist = false) |
| | | private Integer leaseStatus; |
| | | |
| | | @ApiModelProperty(value = "项目名称") |
| | | @TableField(exist = false) |
| | | private String projectName; |
| | | @ApiModelProperty(value = "楼宇名称") |
| | | @TableField(exist = false) |
| | | private String buildingName; |
| | | @ApiModelProperty(value = "楼层名称") |
| | | @TableField(exist = false) |
| | | private String floorName; |
| | | |
| | | |
| | | } |