| | |
| | | @TableName("jczz_house_rental") |
| | | @ApiModel(value = "HouseRental对象", description = "出租屋") |
| | | public class HouseRentalEntity implements Serializable { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主键 |
| | |
| | | @ApiModelProperty(value = "门牌地址编码") |
| | | private String houseCode; |
| | | /** |
| | | * 房屋名称 |
| | | */ |
| | | @ApiModelProperty(value = "房屋名称") |
| | | private String houseName; |
| | | /** |
| | | * 租客关系(WGCCP_TENANT_RELATIONSHIP) |
| | | */ |
| | | @ApiModelProperty(value = "租客关系(WGCCP_TENANT_RELATIONSHIP)") |
| | | private String tenantRelationship; |
| | | private Integer tenantRelationship; |
| | | /** |
| | | * 租房时间 |
| | | */ |
| | | @ApiModelProperty(value = "租房时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date rentalTime; |
| | | /** |
| | | * 到期时间 |
| | | */ |
| | | @ApiModelProperty(value = "到期时间") |
| | | @DateTimeFormat(pattern = "yyyy-MM-dd") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date dueTime; |
| | | /** |
| | | * 房屋状态(WGCCP_HOUSE_STATUS) |
| | | */ |
| | | @ApiModelProperty(value = "房屋状态(WGCCP_HOUSE_STATUS)") |
| | | private String houseStatus; |
| | | private Integer houseStatus; |
| | | /** |
| | | * 租房用途 |
| | | */ |
| | | @ApiModelProperty(value = "租房用途") |
| | | private String rentalUse; |
| | | private Integer rentalUse; |
| | | /** |
| | | * 合同附件URL |
| | | */ |
| | |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | @ApiModelProperty("创建人") |
| | | private String createUser; |
| | | private Long createUser; |
| | | |
| | | /** |
| | | * 创建时间 |
| | |
| | | */ |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | @ApiModelProperty("更新人") |
| | | private String updateUser; |
| | | private Long updateUser; |
| | | |
| | | /** |
| | | * 更新时间 |