无关风月
2025-03-07 d5ef75eff073ed06ec8c4e5ab6a90cbb7c6372f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.ruoyi.system.model;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableId;
import java.time.LocalDateTime;
import com.baomidou.mybatisplus.annotation.TableField;
import java.io.Serializable;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import com.ruoyi.common.core.domain.BaseModel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * <p>
 * 房屋管理
 * </p>
 *
 * @author xiaochen
 * @since 2025-01-20
 */
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("t_house")
@ApiModel(value="THouse对象", description="房屋管理")
public class THouse extends BaseModel {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.ASSIGN_ID)
    private String id;
 
    @ApiModelProperty(value = "房屋图片")
    @TableField("house_picture")
    private String housePicture;
 
    @ApiModelProperty(value = "房屋名称")
    @TableField("house_name")
    private String houseName;
 
    @ApiModelProperty(value = "地址")
    @TableField("house_address")
    private String houseAddress;
 
    @ApiModelProperty(value = "建筑面积")
    @TableField("house_area")
    private String houseArea;
 
    @ApiModelProperty(value = "户型")
    @TableField("house_type")
    private String houseType;
 
    @ApiModelProperty(value = "业务属性")
    @TableField("business_attributes")
    private String businessAttributes;
 
    @ApiModelProperty(value = "产品类型")
    @TableField("product_type")
    private String productType;
 
    @ApiModelProperty(value = "产权人")
    @TableField("property_right_person")
    private String propertyRightPerson;
 
    @ApiModelProperty(value = "产证编号")
    @TableField("property_right_number")
    private String propertyRightNumber;
 
    @ApiModelProperty(value = "产权开始日期")
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    @TableField("property_right_start_time")
    private LocalDateTime propertyRightStartTime;
 
    @ApiModelProperty(value = "产权年限")
    @TableField("property_right_duration")
    private String propertyRightDuration;
 
    @ApiModelProperty(value = "租赁状态 1=待出租 2=已出租 3=维修中")
    @TableField("lease_status")
    private String leaseStatus;
    @ApiModelProperty(value = "楼栋")
    @TableField("building")
    private String building;
    @ApiModelProperty(value = "房号")
    @TableField("room_number")
    private String roomNumber;
    @ApiModelProperty(value = "产权人联系方式")
    @TableField("phone")
    private String phone;
 
    @ApiModelProperty(value = "住户类型 1月租 2季租 3年租")
    @TableField(exist = false)
    private String tenantType;
}