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;
|
|
|
|
|
/** 案件编号 */
|
|
|
|
|
@Excel(name = "案件编号")
|
|
|
|
|
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-18 15:33:40 +08:00
|
|
|
private int arbitratMethod;
|
2023-09-11 14:29:15 +08:00
|
|
|
/** 案件状态 */
|
|
|
|
|
private int caseStatus;
|
|
|
|
|
/** 开庭日期 */
|
|
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
|
|
private Date hearDate;
|
|
|
|
|
/** 申请人仲裁诉求 */
|
|
|
|
|
private String arbitratClaims;
|
|
|
|
|
/** 借款开始日期 */
|
|
|
|
|
@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;
|
|
|
|
|
/** 仲裁应缴费用 */
|
|
|
|
|
private BigDecimal feePayable;
|
|
|
|
|
/** 仲裁实缴费用 */
|
|
|
|
|
private BigDecimal paidExpenses;
|
|
|
|
|
/** 开始在线视频时间 */
|
|
|
|
|
@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
|
|
|
/** 是否同意组庭 */
|
|
|
|
|
private int isAgreePendTral;
|
|
|
|
|
|
2023-09-19 14:31:17 +08:00
|
|
|
/** 是否有异议需要举证 */
|
|
|
|
|
private int objectionAddEviden;
|
|
|
|
|
/** 是否需要开庭审理 */
|
|
|
|
|
private int openCourtHear;
|
|
|
|
|
|
|
|
|
|
public int getObjectionAddEviden() {
|
|
|
|
|
return objectionAddEviden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setObjectionAddEviden(int objectionAddEviden) {
|
|
|
|
|
this.objectionAddEviden = objectionAddEviden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getOpenCourtHear() {
|
|
|
|
|
return openCourtHear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setOpenCourtHear(int openCourtHear) {
|
|
|
|
|
this.openCourtHear = openCourtHear;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-19 10:13:16 +08:00
|
|
|
public int getIsAgreePendTral() {
|
|
|
|
|
return isAgreePendTral;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setIsAgreePendTral(int isAgreePendTral) {
|
|
|
|
|
this.isAgreePendTral = isAgreePendTral;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
public List<Arbitrator> getArbitrators() {
|
|
|
|
|
return arbitrators;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setArbitrators(List<Arbitrator> arbitrators) {
|
|
|
|
|
this.arbitrators = arbitrators;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 身份类型 */
|
|
|
|
|
@Excel(name = "身份类型")
|
|
|
|
|
private int identityType;
|
|
|
|
|
/** 姓名 */
|
|
|
|
|
@Excel(name = "姓名")
|
|
|
|
|
private String name;
|
|
|
|
|
/** 身份证号 */
|
|
|
|
|
@Excel(name = "身份证号")
|
|
|
|
|
private String identityNum;
|
|
|
|
|
/** 单位电话 */
|
|
|
|
|
@Excel(name = "单位电话")
|
|
|
|
|
private String workTelphone;
|
|
|
|
|
/** 联系电话 */
|
|
|
|
|
@Excel(name = "联系电话")
|
|
|
|
|
private String contactTelphone;
|
|
|
|
|
/** 联系地址 */
|
|
|
|
|
@Excel(name = "联系地址")
|
|
|
|
|
private String contactAddress;
|
|
|
|
|
/** 单位地址 */
|
|
|
|
|
@Excel(name = "单位地址")
|
|
|
|
|
private String workAddress;
|
|
|
|
|
|
|
|
|
|
/** 代理人姓名 */
|
|
|
|
|
@Excel(name = "代理人姓名")
|
|
|
|
|
private String nameAgent;
|
|
|
|
|
/** 身份证号 */
|
|
|
|
|
@Excel(name = "代理人身份证号")
|
|
|
|
|
private String identityNumAgent;
|
|
|
|
|
/** 联系电话 */
|
|
|
|
|
@Excel(name = "代理人联系电话")
|
|
|
|
|
private String contactTelphoneAgent;
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 联系地址 */
|
|
|
|
|
@Excel(name = "代理人联系地址")
|
|
|
|
|
private String contactAddressAgent;
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-18 15:33:40 +08:00
|
|
|
public int getArbitratMethod() {
|
2023-09-11 14:29:15 +08:00
|
|
|
return arbitratMethod;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-18 15:33:40 +08:00
|
|
|
public void setArbitratMethod(int arbitratMethod) {
|
2023-09-11 14:29:15 +08:00
|
|
|
this.arbitratMethod = arbitratMethod;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int getCaseStatus() {
|
|
|
|
|
return caseStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setCaseStatus(int caseStatus) {
|
|
|
|
|
this.caseStatus = caseStatus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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 BigDecimal getPaidExpenses() {
|
|
|
|
|
return paidExpenses;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setPaidExpenses(BigDecimal paidExpenses) {
|
|
|
|
|
this.paidExpenses = paidExpenses;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|