jialh
1 天以前 dd6687b118561100e1677e88a9c2f5842a54c531
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package com.java110.dto.importData;
 
import java.io.Serializable;
 
/**
 * 业主房屋产调记录表实体类
 * 对应数据库表:owner_property_survey
 */
public class OwnerPropertySurvey implements Serializable {
 
    private static final long serialVersionUID = 1L; // 序列化版本号,避免反序列化冲突
 
    /**
     * 主键ID(自增)
     * 对应数据库字段:id(BIGINT UNSIGNED)
     */
    private String id;
 
    /**
     * 业主ID(关联building_owner表owner_id)
     * 对应数据库字段:owner_id(VARCHAR(64),非空)
     */
    private String ownerId;
 
    /**
     * 房屋ID(关联building_room表room_id)
     * 对应数据库字段:room_id(VARCHAR(64),非空)
     */
    private String roomId;
 
    /**
     * 调查令申请日期(格式:yyyy-MM-dd)
     * 对应数据库字段:survey_warrant_apply_date(VARCHAR(20),默认空字符串)
     */
    private String surveyWarrantApplyDate;
 
    /**
     * 产调日期(格式:yyyy-MM-dd)
     * 对应数据库字段:property_survey_date(VARCHAR(20),默认空字符串)
     */
    private String propertySurveyDate;
 
    /**
     * 业主姓名
     * 对应数据库字段:name(VARCHAR(50),默认空字符串)
     */
    private String name;
 
    /**
     * 额外日期字段(请根据实际用途修改备注,格式:yyyy-MM-dd)
     * 对应数据库字段:extra_date(VARCHAR(20),默认空字符串)
     */
    private String extraDate;
 
    /**
     * 记录创建时间(数据库自动填充,无需手动设置)
     * 对应数据库字段:create_time(DATETIME,自动填充当前时间)
     */
    private String createTime;
 
    /**
     * 记录更新时间(数据库自动填充,更新时刷新)
     * 对应数据库字段:update_time(DATETIME,自动填充+更新刷新)
     */
    private String updateTime;
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getOwnerId() {
        return ownerId;
    }
 
    public void setOwnerId(String ownerId) {
        this.ownerId = ownerId;
    }
 
    public String getRoomId() {
        return roomId;
    }
 
    public void setRoomId(String roomId) {
        this.roomId = roomId;
    }
 
    public String getSurveyWarrantApplyDate() {
        return surveyWarrantApplyDate;
    }
 
    public void setSurveyWarrantApplyDate(String surveyWarrantApplyDate) {
        this.surveyWarrantApplyDate = surveyWarrantApplyDate;
    }
 
    public String getPropertySurveyDate() {
        return propertySurveyDate;
    }
 
    public void setPropertySurveyDate(String propertySurveyDate) {
        this.propertySurveyDate = propertySurveyDate;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getExtraDate() {
        return extraDate;
    }
 
    public void setExtraDate(String extraDate) {
        this.extraDate = extraDate;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public String getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
    }
}