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