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;
 
/**
 * 邮寄信电联记录表实体类
 * 对应数据库表: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;
    }
}