仲裁结果功能开发
This commit is contained in:
@@ -54,8 +54,7 @@ public class CaseApplication extends BaseEntity {
|
||||
private BigDecimal claimLiquidDamag;
|
||||
/** 仲裁应缴费用 */
|
||||
private BigDecimal feePayable;
|
||||
/** 仲裁实缴费用 */
|
||||
private BigDecimal paidExpenses;
|
||||
|
||||
/** 开始在线视频时间 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date beginVideoDate;
|
||||
@@ -200,6 +199,17 @@ public class CaseApplication extends BaseEntity {
|
||||
/** 案件仲裁员 */
|
||||
private List<Arbitrator> arbitrators;
|
||||
|
||||
/** 仲裁记录 */
|
||||
private ArbitrateRecord arbitrateRecord;
|
||||
|
||||
public ArbitrateRecord getArbitrateRecord() {
|
||||
return arbitrateRecord;
|
||||
}
|
||||
|
||||
public void setArbitrateRecord(ArbitrateRecord arbitrateRecord) {
|
||||
this.arbitrateRecord = arbitrateRecord;
|
||||
}
|
||||
|
||||
public List<Arbitrator> getArbitrators() {
|
||||
return arbitrators;
|
||||
}
|
||||
@@ -455,13 +465,7 @@ public class CaseApplication extends BaseEntity {
|
||||
this.feePayable = feePayable;
|
||||
}
|
||||
|
||||
public BigDecimal getPaidExpenses() {
|
||||
return paidExpenses;
|
||||
}
|
||||
|
||||
public void setPaidExpenses(BigDecimal paidExpenses) {
|
||||
this.paidExpenses = paidExpenses;
|
||||
}
|
||||
|
||||
public Date getBeginVideoDate() {
|
||||
return beginVideoDate;
|
||||
|
||||
Reference in New Issue
Block a user