审核裁决书功能
This commit is contained in:
@@ -26,7 +26,16 @@ public class CaseApplication extends BaseEntity {
|
||||
/** 仲裁方式 */
|
||||
private int arbitratMethod;
|
||||
/** 案件状态 */
|
||||
private int caseStatus;
|
||||
private Integer caseStatus;
|
||||
|
||||
public Integer getCaseStatus() {
|
||||
return caseStatus;
|
||||
}
|
||||
|
||||
public void setCaseStatus(Integer caseStatus) {
|
||||
this.caseStatus = caseStatus;
|
||||
}
|
||||
|
||||
/** 开庭日期 */
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date hearDate;
|
||||
@@ -81,6 +90,16 @@ public class CaseApplication extends BaseEntity {
|
||||
private int openCourtHear;
|
||||
/** 案件状态名称 */
|
||||
private String caseStatusName;
|
||||
/** 是否同意审核 */
|
||||
private Integer agreeOrNotCheck;
|
||||
|
||||
public Integer getAgreeOrNotCheck() {
|
||||
return agreeOrNotCheck;
|
||||
}
|
||||
|
||||
public void setAgreeOrNotCheck(Integer agreeOrNotCheck) {
|
||||
this.agreeOrNotCheck = agreeOrNotCheck;
|
||||
}
|
||||
|
||||
public String getCaseStatusName() {
|
||||
return caseStatusName;
|
||||
@@ -403,13 +422,7 @@ public class CaseApplication extends BaseEntity {
|
||||
this.arbitratMethod = arbitratMethod;
|
||||
}
|
||||
|
||||
public int getCaseStatus() {
|
||||
return caseStatus;
|
||||
}
|
||||
|
||||
public void setCaseStatus(int caseStatus) {
|
||||
this.caseStatus = caseStatus;
|
||||
}
|
||||
|
||||
public Date getHearDate() {
|
||||
return hearDate;
|
||||
|
||||
Reference in New Issue
Block a user