chengf
2026-01-27 b6184e2ddf3db37a94f7efb3b619bbc64642a292
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
package com.java110.dto.importData;
 
import java.io.Serializable;
 
/**
 * 法院审理程序信息表实体类(无外键约束)
 * 对应数据库表:court_trial_procedure
 */
public class CourtTrialProcedure implements Serializable {
 
    private static final long serialVersionUID = 1L; // 序列化版本号,避免反序列化冲突
 
    /**
     * 主键ID(自增)
     * 对应数据库字段:id(BIGINT UNSIGNED)
     */
    private String id;
 
    /**
     * 业主ID(逻辑关联业主表,无外键约束)
     * 对应数据库字段:owner_id(BIGINT UNSIGNED,非空)
     */
    private String ownerId;
 
    /**
     * 受理法院名称
     * 对应数据库字段:accept_court_name(VARCHAR(100))
     */
    private String acceptCourtName;
 
    /**
     * 法官姓名
     * 对应数据库字段:judge_name(VARCHAR(50))
     */
    private String judgeName;
 
    /**
     * 法官联系方式
     * 对应数据库字段:judge_contact(VARCHAR(50))
     */
    private String judgeContact;
 
    /**
     * 法官通知受理日期(格式:yyyy-MM-dd)
     * 对应数据库字段:judge_notice_accept_date(DATE)
     */
    private String judgeNoticeAcceptDate;
 
    /**
     * 法院调解日期(格式:yyyy-MM-dd)
     * 对应数据库字段:court_mediation_date(DATE)
     */
    private String courtMediationDate;
 
    /**
     * 调解结果
     * 对应数据库字段:mediation_result(VARCHAR(255))
     */
    private String mediationResult;
 
    /**
     * 传票签收日(格式:yyyy-MM-dd)
     * 对应数据库字段:subpoena_sign_date(DATE)
     */
    private String subpoenaSignDate;
 
    /**
     * 未送达日期(格式:yyyy-MM-dd)
     * 对应数据库字段:undelivered_date(DATE)
     */
    private String undeliveredDate;
 
    /**
     * 开庭日期1(格式:yyyy-MM-dd)
     * 对应数据库字段:court_session_date1(DATE)
     */
    private String courtSessionDate1;
 
    /**
     * 开庭日期2(格式:yyyy-MM-dd)
     * 对应数据库字段:court_session_date2(DATE)
     */
    private String courtSessionDate2;
 
    /**
     * 案号
     * 对应数据库字段:case_number(VARCHAR(50))
     */
    private String caseNumber;
 
    /**
     * 开庭结果
     * 对应数据库字段:court_session_result(VARCHAR(255))
     */
    private String courtSessionResult;
 
    /**
     * 判决日期(格式:yyyy-MM-dd)
     * 对应数据库字段:judgment_date(DATE)
     */
    private String judgmentDate;
 
    /**
     * 判决结果(长文本)
     * 对应数据库字段:judgment_result(TEXT)
     */
    private String judgmentResult;
 
    /**
     * 备注
     * 对应数据库字段:remark(TEXT)
     */
    private String remark;
 
    /**
     * 创建时间(数据库自动填充,格式:yyyy-MM-dd HH:mm:ss)
     * 对应数据库字段:create_time(DATETIME)
     */
    private String createTime;
 
    /**
     * 更新时间(数据库自动填充,更新时刷新)
     * 对应数据库字段:update_time(DATETIME)
     */
    private String updateTime;
 
    private String callableId;
 
    private Integer page;
 
    private Integer row;
 
    public Integer getPage() {
        return page;
    }
 
    public void setPage(Integer page) {
        this.page = page;
    }
 
    public Integer getRow() {
        return row;
    }
 
    public void setRow(Integer row) {
        this.row = row;
    }
 
    // 以下为全字段 getter/setter 方法
    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 getAcceptCourtName() {
        return acceptCourtName;
    }
 
    public void setAcceptCourtName(String acceptCourtName) {
        this.acceptCourtName = acceptCourtName;
    }
 
    public String getJudgeName() {
        return judgeName;
    }
 
    public void setJudgeName(String judgeName) {
        this.judgeName = judgeName;
    }
 
    public String getJudgeContact() {
        return judgeContact;
    }
 
    public void setJudgeContact(String judgeContact) {
        this.judgeContact = judgeContact;
    }
 
    public String getJudgeNoticeAcceptDate() {
        return judgeNoticeAcceptDate;
    }
 
    public void setJudgeNoticeAcceptDate(String judgeNoticeAcceptDate) {
        this.judgeNoticeAcceptDate = judgeNoticeAcceptDate;
    }
 
    public String getCourtMediationDate() {
        return courtMediationDate;
    }
 
    public void setCourtMediationDate(String courtMediationDate) {
        this.courtMediationDate = courtMediationDate;
    }
 
    public String getMediationResult() {
        return mediationResult;
    }
 
    public void setMediationResult(String mediationResult) {
        this.mediationResult = mediationResult;
    }
 
    public String getSubpoenaSignDate() {
        return subpoenaSignDate;
    }
 
    public void setSubpoenaSignDate(String subpoenaSignDate) {
        this.subpoenaSignDate = subpoenaSignDate;
    }
 
    public String getUndeliveredDate() {
        return undeliveredDate;
    }
 
    public void setUndeliveredDate(String undeliveredDate) {
        this.undeliveredDate = undeliveredDate;
    }
 
    public String getCourtSessionDate1() {
        return courtSessionDate1;
    }
 
    public void setCourtSessionDate1(String courtSessionDate1) {
        this.courtSessionDate1 = courtSessionDate1;
    }
 
    public String getCourtSessionDate2() {
        return courtSessionDate2;
    }
 
    public void setCourtSessionDate2(String courtSessionDate2) {
        this.courtSessionDate2 = courtSessionDate2;
    }
 
    public String getCaseNumber() {
        return caseNumber;
    }
 
    public void setCaseNumber(String caseNumber) {
        this.caseNumber = caseNumber;
    }
 
    public String getCourtSessionResult() {
        return courtSessionResult;
    }
 
    public void setCourtSessionResult(String courtSessionResult) {
        this.courtSessionResult = courtSessionResult;
    }
 
    public String getJudgmentDate() {
        return judgmentDate;
    }
 
    public void setJudgmentDate(String judgmentDate) {
        this.judgmentDate = judgmentDate;
    }
 
    public String getJudgmentResult() {
        return judgmentResult;
    }
 
    public void setJudgmentResult(String judgmentResult) {
        this.judgmentResult = judgmentResult;
    }
 
    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;
    }
 
    public String getCallableId() {
        return callableId;
    }
 
    public void setCallableId(String callableId) {
        this.callableId = callableId;
    }
}