|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+package com.ruoyi.wisdomarbitrate.domain;
|
|
|
2
|
+
|
|
|
3
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
4
|
+import com.ruoyi.common.annotation.Excel;
|
|
|
5
|
+import com.ruoyi.common.core.domain.BaseEntity;
|
|
|
6
|
+
|
|
|
7
|
+import java.util.Date;
|
|
|
8
|
+
|
|
|
9
|
+public class CaseLogRecord extends BaseEntity {
|
|
|
10
|
+ private static final long serialVersionUID = 1L;
|
|
|
11
|
+
|
|
|
12
|
+ /** ID */
|
|
|
13
|
+ private Long id;
|
|
|
14
|
+ /** 案件申请id */
|
|
|
15
|
+ private Long caseAppliId;
|
|
|
16
|
+ /** 案件节点 */
|
|
|
17
|
+ private String caseNode;
|
|
|
18
|
+
|
|
|
19
|
+ /** 案件节点时间 */
|
|
|
20
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
21
|
+ private Date caseNodeTime;
|
|
|
22
|
+
|
|
|
23
|
+ /** 备注 */
|
|
|
24
|
+ private String notes;
|
|
|
25
|
+
|
|
|
26
|
+ /** 案件编号 */
|
|
|
27
|
+ private String caseNum;
|
|
|
28
|
+
|
|
|
29
|
+ public String getCaseNum() {
|
|
|
30
|
+ return caseNum;
|
|
|
31
|
+ }
|
|
|
32
|
+
|
|
|
33
|
+ public void setCaseNum(String caseNum) {
|
|
|
34
|
+ this.caseNum = caseNum;
|
|
|
35
|
+ }
|
|
|
36
|
+
|
|
|
37
|
+ public Long getId() {
|
|
|
38
|
+ return id;
|
|
|
39
|
+ }
|
|
|
40
|
+
|
|
|
41
|
+ public void setId(Long id) {
|
|
|
42
|
+ this.id = id;
|
|
|
43
|
+ }
|
|
|
44
|
+
|
|
|
45
|
+ public Long getCaseAppliId() {
|
|
|
46
|
+ return caseAppliId;
|
|
|
47
|
+ }
|
|
|
48
|
+
|
|
|
49
|
+ public void setCaseAppliId(Long caseAppliId) {
|
|
|
50
|
+ this.caseAppliId = caseAppliId;
|
|
|
51
|
+ }
|
|
|
52
|
+
|
|
|
53
|
+ public String getCaseNode() {
|
|
|
54
|
+ return caseNode;
|
|
|
55
|
+ }
|
|
|
56
|
+
|
|
|
57
|
+ public void setCaseNode(String caseNode) {
|
|
|
58
|
+ this.caseNode = caseNode;
|
|
|
59
|
+ }
|
|
|
60
|
+
|
|
|
61
|
+ public Date getCaseNodeTime() {
|
|
|
62
|
+ return caseNodeTime;
|
|
|
63
|
+ }
|
|
|
64
|
+
|
|
|
65
|
+ public void setCaseNodeTime(Date caseNodeTime) {
|
|
|
66
|
+ this.caseNodeTime = caseNodeTime;
|
|
|
67
|
+ }
|
|
|
68
|
+
|
|
|
69
|
+ public String getNotes() {
|
|
|
70
|
+ return notes;
|
|
|
71
|
+ }
|
|
|
72
|
+
|
|
|
73
|
+ public void setNotes(String notes) {
|
|
|
74
|
+ this.notes = notes;
|
|
|
75
|
+ }
|
|
|
76
|
+}
|