ReplyApprovalProcess.java
2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package com.trash.casefile.domain;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.trash.common.annotation.Excel;
import com.trash.common.core.domain.BaseEntity;
/**
* 回复审批流程对象 reply_approval_process
*
* @author 2c
* @date 2023-05-10
*/
public class ReplyApprovalProcess extends BaseEntity
{
private static final long serialVersionUID = 1L;
/** $column.columnComment */
private Long id;
/** 表名 */
@Excel(name = "表名")
private String tableName;
/** 表id */
@Excel(name = "表id")
private String tableId;
/** 流程实例id */
@Excel(name = "流程实例id")
private String instanceId;
/** 回复内容 */
@Excel(name = "回复内容")
private String reply;
/** 回复时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "回复时间", width = 60, dateFormat = "yyyy-MM-dd HH:mm:ss")
private Date replyTime;
/** 回复图片 */
@Excel(name = "回复图片")
private String replyImg;
/** 回复人 */
@Excel(name = "回复人")
private String replyPeople;
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setTableName(String tableName)
{
this.tableName = tableName;
}
public String getTableName()
{
return tableName;
}
public void setTableId(String tableId)
{
this.tableId = tableId;
}
public String getTableId()
{
return tableId;
}
public void setInstanceId(String instanceId)
{
this.instanceId = instanceId;
}
public String getInstanceId()
{
return instanceId;
}
public void setReply(String reply)
{
this.reply = reply;
}
public String getReply()
{
return reply;
}
public void setReplyTime(Date replyTime)
{
this.replyTime = replyTime;
}
public Date getReplyTime()
{
return replyTime;
}
public void setReplyImg(String replyImg)
{
this.replyImg = replyImg;
}
public String getReplyImg()
{
return replyImg;
}
public void setReplyPeople(String replyPeople)
{
this.replyPeople = replyPeople;
}
public String getReplyPeople()
{
return replyPeople;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("tableName", getTableName())
.append("tableId", getTableId())
.append("instanceId", getInstanceId())
.append("reply", getReply())
.append("replyTime", getReplyTime())
.append("replyImg", getReplyImg())
.append("replyPeople", getReplyPeople())
.toString();
}
}