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;
|
}
|
}
|