219 lines
5.5 KiB
Java
219 lines
5.5 KiB
Java
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 */
|
||
|
|
@Excel(name = "ID", cellType = Excel.ColumnType.NUMERIC, prompt = "ID")
|
||
|
|
private Long id;
|
||
|
|
/** 案件编号 */
|
||
|
|
@Excel(name = "案件编号")
|
||
|
|
private String caseNum;
|
||
|
|
/** 合同编号 */
|
||
|
|
@Excel(name = "合同编号")
|
||
|
|
private String contractNumber;
|
||
|
|
/** 案件标的 */
|
||
|
|
@Excel(name = "案件标的")
|
||
|
|
private BigDecimal caseSubjectAmount;
|
||
|
|
/** 立案日期 */
|
||
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||
|
|
private Date registerDate;
|
||
|
|
/** 仲裁方式 */
|
||
|
|
private String arbitratMethod;
|
||
|
|
/** 案件状态 */
|
||
|
|
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")
|
||
|
|
private Date loanStartDate;
|
||
|
|
/** 借款结束日期 */
|
||
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||
|
|
private Date loanEndDate;
|
||
|
|
/** 申请人主张欠本金 */
|
||
|
|
@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;
|
||
|
|
|
||
|
|
/** 案件关联人信息 */
|
||
|
|
private List<CaseAffiliate> caseAffiliates;
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
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 String getArbitratMethod() {
|
||
|
|
return arbitratMethod;
|
||
|
|
}
|
||
|
|
|
||
|
|
public void setArbitratMethod(String arbitratMethod) {
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|