|
|
@@ -26,7 +26,16 @@ public class CaseApplication extends BaseEntity {
|
|
26
|
26
|
/** 仲裁方式 */
|
|
27
|
27
|
private int arbitratMethod;
|
|
28
|
28
|
/** 案件状态 */
|
|
29
|
|
- private int caseStatus;
|
|
|
29
|
+ private Integer caseStatus;
|
|
|
30
|
+
|
|
|
31
|
+ public Integer getCaseStatus() {
|
|
|
32
|
+ return caseStatus;
|
|
|
33
|
+ }
|
|
|
34
|
+
|
|
|
35
|
+ public void setCaseStatus(Integer caseStatus) {
|
|
|
36
|
+ this.caseStatus = caseStatus;
|
|
|
37
|
+ }
|
|
|
38
|
+
|
|
30
|
39
|
/** 开庭日期 */
|
|
31
|
40
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
32
|
41
|
private Date hearDate;
|
|
|
@@ -81,6 +90,16 @@ public class CaseApplication extends BaseEntity {
|
|
81
|
90
|
private int openCourtHear;
|
|
82
|
91
|
/** 案件状态名称 */
|
|
83
|
92
|
private String caseStatusName;
|
|
|
93
|
+ /** 是否同意审核 */
|
|
|
94
|
+ private Integer agreeOrNotCheck;
|
|
|
95
|
+
|
|
|
96
|
+ public Integer getAgreeOrNotCheck() {
|
|
|
97
|
+ return agreeOrNotCheck;
|
|
|
98
|
+ }
|
|
|
99
|
+
|
|
|
100
|
+ public void setAgreeOrNotCheck(Integer agreeOrNotCheck) {
|
|
|
101
|
+ this.agreeOrNotCheck = agreeOrNotCheck;
|
|
|
102
|
+ }
|
|
84
|
103
|
|
|
85
|
104
|
public String getCaseStatusName() {
|
|
86
|
105
|
return caseStatusName;
|
|
|
@@ -403,13 +422,7 @@ public class CaseApplication extends BaseEntity {
|
|
403
|
422
|
this.arbitratMethod = arbitratMethod;
|
|
404
|
423
|
}
|
|
405
|
424
|
|
|
406
|
|
- public int getCaseStatus() {
|
|
407
|
|
- return caseStatus;
|
|
408
|
|
- }
|
|
409
|
425
|
|
|
410
|
|
- public void setCaseStatus(int caseStatus) {
|
|
411
|
|
- this.caseStatus = caseStatus;
|
|
412
|
|
- }
|
|
413
|
426
|
|
|
414
|
427
|
public Date getHearDate() {
|
|
415
|
428
|
return hearDate;
|