截止9.18开发更新提交
This commit is contained in:
@@ -2,7 +2,6 @@ package com.ruoyi.wisdomarbitrate.domain;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import com.ruoyi.common.annotation.Excel;
|
||||
import com.ruoyi.common.annotation.Excels;
|
||||
import com.ruoyi.common.core.domain.BaseEntity;
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
@@ -68,6 +67,41 @@ public class CaseApplication extends BaseEntity {
|
||||
/** 仲裁员名称 */
|
||||
private String arbitratorName;
|
||||
|
||||
/** 案件名称 */
|
||||
private String caseName;
|
||||
|
||||
/** 案件描述 */
|
||||
private String caseDescribe;
|
||||
|
||||
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;
|
||||
|
||||
|
||||
|
||||
public String getArbitratorName() {
|
||||
return arbitratorName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user