package com.java110.dto.importData;
|
|
import java.io.Serializable;
|
|
/**
|
* 邮寄信电联记录表实体类
|
* 对应数据库表:mail_call_record
|
*/
|
public class MailCallRecord implements Serializable {
|
|
private static final long serialVersionUID = 1L; // 序列化版本号,避免反序列化冲突
|
|
/**
|
* 主键ID(自增)
|
* 对应数据库字段:id(BIGINT UNSIGNED)
|
*/
|
private String id;
|
|
/**
|
* 邮寄信编号(关联房屋邮寄表的主键/邮寄单号)
|
* 对应数据库字段:mail_id(VARCHAR(128),非空)
|
*/
|
private String mailId;
|
|
/**
|
* 电联日期(格式:yyyy-MM-dd HH:mm:ss)
|
* 对应数据库字段:call_date(DATETIME,非空)
|
*/
|
private String callDate;
|
|
/**
|
* 电联结果(枚举类型,如:接通/未接/拒接/空号等)
|
* 对应数据库字段:call_result(VARCHAR(5))
|
*/
|
private String callResult;
|
|
/**
|
* 被电联联系人(业主/对接人姓名)
|
* 对应数据库字段:call_contact(VARCHAR(64),非空)
|
*/
|
private String callContact;
|
|
/**
|
* 电联执行人员(客服/工作人员姓名)
|
* 对应数据库字段:caller(VARCHAR(64),默认空字符串)
|
*/
|
private String caller;
|
|
/**
|
* 电联备注(沟通内容、问题、后续安排等)
|
* 对应数据库字段:remark(TEXT,可为null)
|
*/
|
private String remark;
|
|
/**
|
* 记录创建时间(数据库自动填充,无需手动设置)
|
* 对应数据库字段: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 getMailId() {
|
return mailId;
|
}
|
|
public void setMailId(String mailId) {
|
this.mailId = mailId;
|
}
|
|
public String getCallDate() {
|
return callDate;
|
}
|
|
public void setCallDate(String callDate) {
|
this.callDate = callDate;
|
}
|
|
public String getCallResult() {
|
return callResult;
|
}
|
|
public void setCallResult(String callResult) {
|
this.callResult = callResult;
|
}
|
|
public String getCallContact() {
|
return callContact;
|
}
|
|
public void setCallContact(String callContact) {
|
this.callContact = callContact;
|
}
|
|
public String getCaller() {
|
return caller;
|
}
|
|
public void setCaller(String caller) {
|
this.caller = caller;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
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;
|
}
|
}
|