2023-09-11 14:29:15 +08:00
|
|
|
package com.ruoyi.wisdomarbitrate.domain;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
public class CaseApplication extends BaseEntity {
|
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
/** ID */
|
|
|
|
|
private Long id;
|
|
|
|
|
/** 案件编号 */
|
2023-10-09 14:38:30 +08:00
|
|
|
// @Excel(name = "案件编号")
|
2023-09-11 14:29:15 +08:00
|
|
|
private String caseNum;
|
|
|
|
|
/** 案件标的 */
|
|
|
|
|
@Excel(name = "案件标的")
|
|
|
|
|
private BigDecimal caseSubjectAmount;
|
2023-09-14 18:40:44 +08:00
|
|
|
|
|
|
|
|
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 立案日期 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date registerDate;
|
|
|
|
|
/** 仲裁方式 */
|
2023-09-22 14:59:02 +08:00
|
|
|
private Integer arbitratMethod;
|
|
|
|
|
|
|
|
|
|
public Integer getArbitratMethod() {
|
|
|
|
|
return arbitratMethod;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setArbitratMethod(Integer arbitratMethod) {
|
|
|
|
|
this.arbitratMethod = arbitratMethod;
|
|
|
|
|
}
|
|
|
|
|
/** 仲裁方式名称 */
|
|
|
|
|
private String arbitratMethodName;
|
|
|
|
|
|
|
|
|
|
public String getArbitratMethodName() {
|
|
|
|
|
return arbitratMethodName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setArbitratMethodName(String arbitratMethodName) {
|
|
|
|
|
this.arbitratMethodName = arbitratMethodName;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 案件状态 */
|
2023-09-20 19:49:51 +08:00
|
|
|
private Integer caseStatus;
|
|
|
|
|
|
|
|
|
|
public Integer getCaseStatus() {
|
|
|
|
|
return caseStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseStatus(Integer caseStatus) {
|
|
|
|
|
this.caseStatus = caseStatus;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 开庭日期 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date hearDate;
|
2023-10-09 13:54:57 +08:00
|
|
|
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 借款开始日期 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
2023-09-14 18:40:44 +08:00
|
|
|
@Excel(name = "借款开始日期")
|
2023-09-11 14:29:15 +08:00
|
|
|
private Date loanStartDate;
|
|
|
|
|
/** 借款结束日期 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
2023-09-14 18:40:44 +08:00
|
|
|
@Excel(name = "借款结束日期")
|
2023-09-11 14:29:15 +08:00
|
|
|
private Date loanEndDate;
|
2023-09-14 18:40:44 +08:00
|
|
|
/** 合同编号 */
|
|
|
|
|
@Excel(name = "合同编号")
|
|
|
|
|
private String contractNumber;
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 申请人主张欠本金 */
|
|
|
|
|
@Excel(name = "申请人主张欠本金")
|
|
|
|
|
private BigDecimal claimPrinciOwed;
|
|
|
|
|
/** 申请人主张欠利息 */
|
|
|
|
|
@Excel(name = "申请人主张欠利息")
|
|
|
|
|
private BigDecimal claimInterestOwed;
|
|
|
|
|
/** 申请人主张违约金 */
|
|
|
|
|
@Excel(name = "申请人主张违约金")
|
|
|
|
|
private BigDecimal claimLiquidDamag;
|
2023-10-09 13:54:57 +08:00
|
|
|
/** 申请人仲裁诉求 */
|
|
|
|
|
@Excel(name = "申请人仲裁诉求")
|
|
|
|
|
private String arbitratClaims;
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 仲裁应缴费用 */
|
|
|
|
|
private BigDecimal feePayable;
|
2023-09-20 15:53:56 +08:00
|
|
|
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 开始在线视频时间 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date beginVideoDate;
|
|
|
|
|
/** 在线视频人员 */
|
|
|
|
|
private String onlineVideoPerson;
|
|
|
|
|
|
2023-09-14 18:40:44 +08:00
|
|
|
/** 仲裁员id */
|
|
|
|
|
private String arbitratorId;
|
|
|
|
|
/** 仲裁员名称 */
|
|
|
|
|
private String arbitratorName;
|
|
|
|
|
|
2023-09-18 18:15:34 +08:00
|
|
|
/** 案件名称 */
|
|
|
|
|
private String caseName;
|
|
|
|
|
|
|
|
|
|
/** 案件描述 */
|
|
|
|
|
private String caseDescribe;
|
|
|
|
|
|
2023-09-19 10:13:16 +08:00
|
|
|
/** 是否同意组庭 */
|
2023-09-22 14:59:02 +08:00
|
|
|
private Integer isAgreePendTral;
|
2023-09-19 10:13:16 +08:00
|
|
|
|
2023-09-19 14:31:17 +08:00
|
|
|
/** 是否有异议需要举证 */
|
2023-09-22 14:59:02 +08:00
|
|
|
private Integer objectionAddEviden;
|
2023-09-19 14:31:17 +08:00
|
|
|
/** 是否需要开庭审理 */
|
2023-09-22 14:59:02 +08:00
|
|
|
private Integer openCourtHear;
|
|
|
|
|
|
2023-09-22 17:03:26 +08:00
|
|
|
/** 支付状态 */
|
|
|
|
|
private Integer paymentStatus;
|
|
|
|
|
/** 支付状态描述 */
|
|
|
|
|
private String paymentStatusName;
|
|
|
|
|
|
|
|
|
|
public Integer getPaymentStatus() {
|
|
|
|
|
return paymentStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPaymentStatus(Integer paymentStatus) {
|
|
|
|
|
this.paymentStatus = paymentStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getPaymentStatusName() {
|
|
|
|
|
return paymentStatusName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPaymentStatusName(String paymentStatusName) {
|
|
|
|
|
this.paymentStatusName = paymentStatusName;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-22 14:59:02 +08:00
|
|
|
public Integer getIsAgreePendTral() {
|
|
|
|
|
return isAgreePendTral;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIsAgreePendTral(Integer isAgreePendTral) {
|
|
|
|
|
this.isAgreePendTral = isAgreePendTral;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getObjectionAddEviden() {
|
|
|
|
|
return objectionAddEviden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setObjectionAddEviden(Integer objectionAddEviden) {
|
|
|
|
|
this.objectionAddEviden = objectionAddEviden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Integer getOpenCourtHear() {
|
|
|
|
|
return openCourtHear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOpenCourtHear(Integer openCourtHear) {
|
|
|
|
|
this.openCourtHear = openCourtHear;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-19 21:09:21 +08:00
|
|
|
/** 案件状态名称 */
|
|
|
|
|
private String caseStatusName;
|
2023-09-20 19:49:51 +08:00
|
|
|
/** 是否同意审核 */
|
|
|
|
|
private Integer agreeOrNotCheck;
|
|
|
|
|
|
|
|
|
|
public Integer getAgreeOrNotCheck() {
|
|
|
|
|
return agreeOrNotCheck;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setAgreeOrNotCheck(Integer agreeOrNotCheck) {
|
|
|
|
|
this.agreeOrNotCheck = agreeOrNotCheck;
|
|
|
|
|
}
|
2023-09-19 21:09:21 +08:00
|
|
|
|
|
|
|
|
public String getCaseStatusName() {
|
|
|
|
|
return caseStatusName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseStatusName(String caseStatusName) {
|
|
|
|
|
this.caseStatusName = caseStatusName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 申请人名称 */
|
|
|
|
|
private String applicantName;
|
|
|
|
|
/** 被申请人名称 */
|
|
|
|
|
private String respondentName;
|
|
|
|
|
|
|
|
|
|
public String getApplicantName() {
|
|
|
|
|
return applicantName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setApplicantName(String applicantName) {
|
|
|
|
|
this.applicantName = applicantName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getRespondentName() {
|
|
|
|
|
return respondentName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRespondentName(String respondentName) {
|
|
|
|
|
this.respondentName = respondentName;
|
|
|
|
|
}
|
2023-09-19 14:31:17 +08:00
|
|
|
|
|
|
|
|
|
2023-09-19 10:13:16 +08:00
|
|
|
|
2023-09-18 18:15:34 +08:00
|
|
|
public String getCaseName() {
|
|
|
|
|
return caseName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseName(String caseName) {
|
|
|
|
|
this.caseName = caseName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCaseDescribe() {
|
|
|
|
|
return caseDescribe;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseDescribe(String caseDescribe) {
|
|
|
|
|
this.caseDescribe = caseDescribe;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCaseResult() {
|
|
|
|
|
return caseResult;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseResult(String caseResult) {
|
|
|
|
|
this.caseResult = caseResult;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 仲裁结果 */
|
|
|
|
|
private String caseResult;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-09-14 18:40:44 +08:00
|
|
|
public String getArbitratorName() {
|
|
|
|
|
return arbitratorName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setArbitratorName(String arbitratorName) {
|
|
|
|
|
this.arbitratorName = arbitratorName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 是否指派仲裁员 */
|
|
|
|
|
private int pendingAppointArbotrar;
|
|
|
|
|
|
|
|
|
|
public int getPendingAppointArbotrar() {
|
|
|
|
|
return pendingAppointArbotrar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPendingAppointArbotrar(int pendingAppointArbotrar) {
|
|
|
|
|
this.pendingAppointArbotrar = pendingAppointArbotrar;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getArbitratorId() {
|
|
|
|
|
return arbitratorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setArbitratorId(String arbitratorId) {
|
|
|
|
|
this.arbitratorId = arbitratorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 案件关联人信息 */
|
|
|
|
|
private List<CaseAffiliate> caseAffiliates;
|
|
|
|
|
|
2023-09-14 18:40:44 +08:00
|
|
|
/** 案件仲裁员 */
|
|
|
|
|
private List<Arbitrator> arbitrators;
|
|
|
|
|
|
2023-09-20 16:51:43 +08:00
|
|
|
private List<Integer> caseStatusList;
|
|
|
|
|
|
2023-09-26 14:52:17 +08:00
|
|
|
private List<Integer> annexTypeList;
|
|
|
|
|
|
|
|
|
|
private Integer annexType;
|
|
|
|
|
|
|
|
|
|
public Integer getAnnexType() {
|
|
|
|
|
return annexType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setAnnexType(Integer annexType) {
|
|
|
|
|
this.annexType = annexType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<Integer> getAnnexTypeList() {
|
|
|
|
|
return annexTypeList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setAnnexTypeList(List<Integer> annexTypeList) {
|
|
|
|
|
this.annexTypeList = annexTypeList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 案件附件列表
|
|
|
|
|
*/
|
|
|
|
|
private List<CaseAttach> caseAttachList;
|
|
|
|
|
|
|
|
|
|
public List<CaseAttach> getCaseAttachList() {
|
|
|
|
|
return caseAttachList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseAttachList(List<CaseAttach> caseAttachList) {
|
|
|
|
|
this.caseAttachList = caseAttachList;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-20 16:51:43 +08:00
|
|
|
public List<Integer> getCaseStatusList() {
|
|
|
|
|
return caseStatusList;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseStatusList(List<Integer> caseStatusList) {
|
|
|
|
|
this.caseStatusList = caseStatusList;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-20 15:53:56 +08:00
|
|
|
/** 仲裁记录 */
|
|
|
|
|
private ArbitrateRecord arbitrateRecord;
|
|
|
|
|
|
|
|
|
|
public ArbitrateRecord getArbitrateRecord() {
|
|
|
|
|
return arbitrateRecord;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setArbitrateRecord(ArbitrateRecord arbitrateRecord) {
|
|
|
|
|
this.arbitrateRecord = arbitrateRecord;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-14 18:40:44 +08:00
|
|
|
public List<Arbitrator> getArbitrators() {
|
|
|
|
|
return arbitrators;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setArbitrators(List<Arbitrator> arbitrators) {
|
|
|
|
|
this.arbitrators = arbitrators;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 身份类型 */
|
2023-10-09 17:13:46 +08:00
|
|
|
// @Excel(name = "身份类型")
|
2023-09-14 18:40:44 +08:00
|
|
|
private int identityType;
|
2023-10-09 17:13:46 +08:00
|
|
|
/**
|
|
|
|
|
* 申请人主体信息
|
|
|
|
|
*/
|
2023-09-14 18:40:44 +08:00
|
|
|
/** 姓名 */
|
2023-10-10 16:00:34 +08:00
|
|
|
@Excel(name = "申请人主体信息-申请人(机构)",width = 26)
|
2023-09-14 18:40:44 +08:00
|
|
|
private String name;
|
2023-10-11 11:31:35 +08:00
|
|
|
/**
|
|
|
|
|
* 申请人主体信息-申请人(机构)id
|
|
|
|
|
*/
|
|
|
|
|
private String nameId;
|
2023-09-14 18:40:44 +08:00
|
|
|
/** 身份证号 */
|
2023-10-10 16:00:34 +08:00
|
|
|
@Excel(name = "申请人主体信息-代码",width = 26)
|
2023-09-14 18:40:44 +08:00
|
|
|
private String identityNum;
|
2023-10-09 17:13:46 +08:00
|
|
|
|
2023-09-14 18:40:44 +08:00
|
|
|
/** 联系电话 */
|
2023-10-09 17:13:46 +08:00
|
|
|
@Excel(name = "申请人主体信息-联系电话",width = 26)
|
2023-09-14 18:40:44 +08:00
|
|
|
private String contactTelphone;
|
|
|
|
|
/** 联系地址 */
|
2023-10-09 17:13:46 +08:00
|
|
|
@Excel(name = "申请人主体信息-联系地址",width = 26)
|
2023-09-14 18:40:44 +08:00
|
|
|
private String contactAddress;
|
2023-10-09 17:13:46 +08:00
|
|
|
/** 单位电话 */
|
|
|
|
|
@Excel(name = "申请人主体信息-单位电话",width = 26)
|
|
|
|
|
private String workTelphone;
|
2023-09-14 18:40:44 +08:00
|
|
|
/** 单位地址 */
|
2023-10-09 17:13:46 +08:00
|
|
|
@Excel(name = "申请人主体信息-单位地址",width = 26)
|
2023-09-14 18:40:44 +08:00
|
|
|
private String workAddress;
|
|
|
|
|
|
|
|
|
|
/** 代理人姓名 */
|
2023-10-09 17:13:46 +08:00
|
|
|
@Excel(name = "申请人主体信息-代理人姓名",width = 26)
|
2023-09-14 18:40:44 +08:00
|
|
|
private String nameAgent;
|
|
|
|
|
/** 身份证号 */
|
2023-10-09 17:13:46 +08:00
|
|
|
@Excel(name = "申请人主体信息-代理人身份证号",width = 26)
|
2023-09-14 18:40:44 +08:00
|
|
|
private String identityNumAgent;
|
|
|
|
|
/** 联系电话 */
|
2023-10-09 17:13:46 +08:00
|
|
|
@Excel(name = "申请人主体信息-代理人联系电话",width = 26)
|
2023-09-14 18:40:44 +08:00
|
|
|
private String contactTelphoneAgent;
|
2023-10-09 17:13:46 +08:00
|
|
|
/** 联系地址 */
|
|
|
|
|
@Excel(name = "申请人主体信息-代理人联系地址",width = 26)
|
|
|
|
|
private String contactAddressAgent;
|
|
|
|
|
/**
|
|
|
|
|
* 被申请人主体信息
|
|
|
|
|
*/
|
|
|
|
|
/** 姓名 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-申请人姓名",width = 26)
|
|
|
|
|
private String debtorName;
|
|
|
|
|
/** 身份证号 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-身份证号",width = 26)
|
|
|
|
|
private String debtorIdentityNum;
|
|
|
|
|
|
|
|
|
|
/** 联系电话 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-联系电话",width = 26)
|
|
|
|
|
private String debtorContactTelphone;
|
|
|
|
|
/** 联系地址 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-联系地址",width = 26)
|
|
|
|
|
private String debtorContactAddress;
|
|
|
|
|
/** 单位电话 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-单位电话",width = 26)
|
|
|
|
|
private String debtorWorkTelphone;
|
|
|
|
|
/** 单位地址 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-单位地址",width = 26)
|
|
|
|
|
private String debtorWorkAddress;
|
|
|
|
|
|
|
|
|
|
/** 代理人姓名 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-代理人姓名",width = 26)
|
|
|
|
|
private String debtorNameAgent;
|
|
|
|
|
/** 身份证号 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-代理人身份证号",width = 26)
|
|
|
|
|
private String debtorIdentityNumAgent;
|
|
|
|
|
/** 联系电话 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-代理人联系电话",width = 26)
|
|
|
|
|
private String debtorContactTelphoneAgent;
|
|
|
|
|
/** 联系地址 */
|
|
|
|
|
@Excel(name = "被申请人主体信息-代理人联系地址",width = 26)
|
|
|
|
|
private String debtorContactAddressAgent;
|
2023-09-14 18:40:44 +08:00
|
|
|
|
|
|
|
|
public int getIdentityType() {
|
|
|
|
|
return identityType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIdentityType(int identityType) {
|
|
|
|
|
this.identityType = identityType;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getName() {
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setName(String name) {
|
|
|
|
|
this.name = name;
|
|
|
|
|
}
|
|
|
|
|
|
2023-10-11 11:31:35 +08:00
|
|
|
public String getNameId() {
|
|
|
|
|
return nameId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setNameId(String nameId) {
|
|
|
|
|
this.nameId = nameId;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-14 18:40:44 +08:00
|
|
|
public String getIdentityNum() {
|
|
|
|
|
return identityNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIdentityNum(String identityNum) {
|
|
|
|
|
this.identityNum = identityNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getWorkTelphone() {
|
|
|
|
|
return workTelphone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setWorkTelphone(String workTelphone) {
|
|
|
|
|
this.workTelphone = workTelphone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getContactTelphone() {
|
|
|
|
|
return contactTelphone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setContactTelphone(String contactTelphone) {
|
|
|
|
|
this.contactTelphone = contactTelphone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getContactAddress() {
|
|
|
|
|
return contactAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setContactAddress(String contactAddress) {
|
|
|
|
|
this.contactAddress = contactAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getWorkAddress() {
|
|
|
|
|
return workAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setWorkAddress(String workAddress) {
|
|
|
|
|
this.workAddress = workAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getNameAgent() {
|
|
|
|
|
return nameAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setNameAgent(String nameAgent) {
|
|
|
|
|
this.nameAgent = nameAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getIdentityNumAgent() {
|
|
|
|
|
return identityNumAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIdentityNumAgent(String identityNumAgent) {
|
|
|
|
|
this.identityNumAgent = identityNumAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getContactTelphoneAgent() {
|
|
|
|
|
return contactTelphoneAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setContactTelphoneAgent(String contactTelphoneAgent) {
|
|
|
|
|
this.contactTelphoneAgent = contactTelphoneAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getContactAddressAgent() {
|
|
|
|
|
return contactAddressAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setContactAddressAgent(String contactAddressAgent) {
|
|
|
|
|
this.contactAddressAgent = contactAddressAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2023-10-09 17:13:46 +08:00
|
|
|
public String getDebtorName() {
|
|
|
|
|
return debtorName;
|
|
|
|
|
}
|
2023-09-14 18:40:44 +08:00
|
|
|
|
2023-10-09 17:13:46 +08:00
|
|
|
public void setDebtorName(String debtorName) {
|
|
|
|
|
this.debtorName = debtorName;
|
|
|
|
|
}
|
2023-09-11 14:29:15 +08:00
|
|
|
|
2023-10-09 17:13:46 +08:00
|
|
|
public String getDebtorIdentityNum() {
|
|
|
|
|
return debtorIdentityNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorIdentityNum(String debtorIdentityNum) {
|
|
|
|
|
this.debtorIdentityNum = debtorIdentityNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDebtorContactTelphone() {
|
|
|
|
|
return debtorContactTelphone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorContactTelphone(String debtorContactTelphone) {
|
|
|
|
|
this.debtorContactTelphone = debtorContactTelphone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDebtorContactAddress() {
|
|
|
|
|
return debtorContactAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorContactAddress(String debtorContactAddress) {
|
|
|
|
|
this.debtorContactAddress = debtorContactAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDebtorWorkTelphone() {
|
|
|
|
|
return debtorWorkTelphone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorWorkTelphone(String debtorWorkTelphone) {
|
|
|
|
|
this.debtorWorkTelphone = debtorWorkTelphone;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDebtorWorkAddress() {
|
|
|
|
|
return debtorWorkAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorWorkAddress(String debtorWorkAddress) {
|
|
|
|
|
this.debtorWorkAddress = debtorWorkAddress;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDebtorNameAgent() {
|
|
|
|
|
return debtorNameAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorNameAgent(String debtorNameAgent) {
|
|
|
|
|
this.debtorNameAgent = debtorNameAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDebtorIdentityNumAgent() {
|
|
|
|
|
return debtorIdentityNumAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorIdentityNumAgent(String debtorIdentityNumAgent) {
|
|
|
|
|
this.debtorIdentityNumAgent = debtorIdentityNumAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDebtorContactTelphoneAgent() {
|
|
|
|
|
return debtorContactTelphoneAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorContactTelphoneAgent(String debtorContactTelphoneAgent) {
|
|
|
|
|
this.debtorContactTelphoneAgent = debtorContactTelphoneAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getDebtorContactAddressAgent() {
|
|
|
|
|
return debtorContactAddressAgent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDebtorContactAddressAgent(String debtorContactAddressAgent) {
|
|
|
|
|
this.debtorContactAddressAgent = debtorContactAddressAgent;
|
|
|
|
|
}
|
2023-09-11 14:29:15 +08:00
|
|
|
|
|
|
|
|
public Long getId() {
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setId(Long id) {
|
|
|
|
|
this.id = id;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getCaseNum() {
|
|
|
|
|
return caseNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseNum(String caseNum) {
|
|
|
|
|
this.caseNum = caseNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getContractNumber() {
|
|
|
|
|
return contractNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setContractNumber(String contractNumber) {
|
|
|
|
|
this.contractNumber = contractNumber;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getCaseSubjectAmount() {
|
|
|
|
|
return caseSubjectAmount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseSubjectAmount(BigDecimal caseSubjectAmount) {
|
|
|
|
|
this.caseSubjectAmount = caseSubjectAmount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getRegisterDate() {
|
|
|
|
|
return registerDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setRegisterDate(Date registerDate) {
|
|
|
|
|
this.registerDate = registerDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getHearDate() {
|
|
|
|
|
return hearDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setHearDate(Date hearDate) {
|
|
|
|
|
this.hearDate = hearDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getArbitratClaims() {
|
|
|
|
|
return arbitratClaims;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setArbitratClaims(String arbitratClaims) {
|
|
|
|
|
this.arbitratClaims = arbitratClaims;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getLoanStartDate() {
|
|
|
|
|
return loanStartDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setLoanStartDate(Date loanStartDate) {
|
|
|
|
|
this.loanStartDate = loanStartDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Date getLoanEndDate() {
|
|
|
|
|
return loanEndDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setLoanEndDate(Date loanEndDate) {
|
|
|
|
|
this.loanEndDate = loanEndDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getClaimPrinciOwed() {
|
|
|
|
|
return claimPrinciOwed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setClaimPrinciOwed(BigDecimal claimPrinciOwed) {
|
|
|
|
|
this.claimPrinciOwed = claimPrinciOwed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getClaimInterestOwed() {
|
|
|
|
|
return claimInterestOwed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setClaimInterestOwed(BigDecimal claimInterestOwed) {
|
|
|
|
|
this.claimInterestOwed = claimInterestOwed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getClaimLiquidDamag() {
|
|
|
|
|
return claimLiquidDamag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setClaimLiquidDamag(BigDecimal claimLiquidDamag) {
|
|
|
|
|
this.claimLiquidDamag = claimLiquidDamag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BigDecimal getFeePayable() {
|
|
|
|
|
return feePayable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setFeePayable(BigDecimal feePayable) {
|
|
|
|
|
this.feePayable = feePayable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getBeginVideoDate() {
|
|
|
|
|
return beginVideoDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setBeginVideoDate(Date beginVideoDate) {
|
|
|
|
|
this.beginVideoDate = beginVideoDate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getOnlineVideoPerson() {
|
|
|
|
|
return onlineVideoPerson;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOnlineVideoPerson(String onlineVideoPerson) {
|
|
|
|
|
this.onlineVideoPerson = onlineVideoPerson;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<CaseAffiliate> getCaseAffiliates() {
|
|
|
|
|
return caseAffiliates;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseAffiliates(List<CaseAffiliate> caseAffiliates) {
|
|
|
|
|
this.caseAffiliates = caseAffiliates;
|
|
|
|
|
}
|
2023-09-14 18:40:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-09-11 14:29:15 +08:00
|
|
|
}
|