| | |
| | | package org.springblade.modules.house.vo; |
| | | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import org.springblade.modules.house.entity.HouseRentalEntity; |
| | | import org.springblade.modules.house.entity.HouseTenantEntity; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 房屋租户VO |
| | |
| | | @Data |
| | | public class HouseRentalTenantVO extends HouseRentalEntity { |
| | | |
| | | //租户名 |
| | | @ApiModelProperty(value = "租户名") |
| | | private String tenantName; |
| | | |
| | | //房屋名 |
| | | @ApiModelProperty(value = "房屋名") |
| | | private String houseName; |
| | | |
| | | //电话 |
| | | @ApiModelProperty(value = "联系电话") |
| | | private String phone; |
| | | |
| | | /** |
| | | * 租房时间类型 1:长期 2:中期 3:短期 |
| | | */ |
| | | @ApiModelProperty(value = "租房时间类型 1:长期 2:中期 3:短期") |
| | | private Integer dldType; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 拼接地址 |
| | | */ |
| | | @ApiModelProperty(value = "拼接地址") |
| | | private String address; |
| | | |
| | | /** |
| | | * 是否到期 0:未到期 1:已到期 2:已终止 |
| | | */ |
| | | @ApiModelProperty(value = "是否到期 0:未到期 1:已到期 2:已终止") |
| | | private Integer status; |
| | | |
| | | /** |
| | | * 区域编号 |
| | | */ |
| | | @ApiModelProperty(value = "区域编号") |
| | | private String regionCode; |
| | | |
| | | /** |
| | | * 开始时间 |
| | | */ |
| | | @ApiModelProperty(value = "开始时间") |
| | | private String startTime; |
| | | |
| | | /** |
| | | * 结束时间 |
| | | */ |
| | | @ApiModelProperty(value = "结束时间") |
| | | private String endTime; |
| | | |
| | | private String neiCode; |
| | | @ApiModelProperty(value = "小区编号") |
| | | private String neiCode; |
| | | |
| | | @ApiModelProperty(value = "用户编号") |
| | | private Long userId; |
| | | |
| | | /** |
| | | * 角色名称 |
| | | */ |
| | | @ApiModelProperty(value = "角色名称") |
| | | private String roleName; |
| | | |
| | | /** |
| | | * 社区编号 |
| | | */ |
| | | @ApiModelProperty(value = "社区编号") |
| | | private String communityCode; |
| | | |
| | | /** |
| | | * 街道名称 |
| | | */ |
| | | @ApiModelProperty(value = "街道名称") |
| | | private String townStreetName; |
| | | |
| | | /** |
| | | * 社区名称 |
| | | */ |
| | | @ApiModelProperty(value = "社区名称") |
| | | private String neiName; |
| | | |
| | | @ApiModelProperty(value = "租户信息标识 0:未显示 1:显示") |
| | | private Integer tenantInfoFlag = 1; |
| | | |
| | | } |