xiangpei
2024-11-26 135b3962347dfacbd0684df02ab10fb78410877f
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
package com.ycl.domain.entity;
 
import com.ycl.common.annotation.Excel;
import com.ycl.common.core.domain.BaseEntity;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 流程监听对象 sys_listener
 *
 * @author Tony
 * @date 2022-12-25
 */
public class SysListener extends BaseEntity
{
    private static final long serialVersionUID = 1L;
 
    /** 表单主键 */
    private Long id;
 
    /** 名称 */
    @Excel(name = "名称")
    private String name;
 
    /** 监听类型 */
    @Excel(name = "监听类型")
    private String type;
 
    /** 事件类型 */
    @Excel(name = "事件类型")
    private String eventType;
 
    /** 值类型 */
    @Excel(name = "值类型")
    private String valueType;
 
    /** 执行内容 */
    @Excel(name = "执行内容")
    private String value;
 
    /** 状态 */
    @Excel(name = "状态")
    private Integer status;
 
    public void setId(Long id)
    {
        this.id = id;
    }
 
    public Long getId()
    {
        return id;
    }
    public void setName(String name)
    {
        this.name = name;
    }
 
    public String getName()
    {
        return name;
    }
    public void setType(String type)
    {
        this.type = type;
    }
 
    public String getType()
    {
        return type;
    }
    public void setEventType(String eventType)
    {
        this.eventType = eventType;
    }
 
    public String getEventType()
    {
        return eventType;
    }
    public void setValueType(String valueType)
    {
        this.valueType = valueType;
    }
 
    public String getValueType()
    {
        return valueType;
    }
    public void setValue(String value)
    {
        this.value = value;
    }
 
    public String getValue()
    {
        return value;
    }
    public void setStatus(Integer status)
    {
        this.status = status;
    }
 
    public Integer getStatus()
    {
        return status;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("id", getId())
            .append("name", getName())
            .append("type", getType())
            .append("eventType", getEventType())
            .append("valueType", getValueType())
            .append("value", getValue())
            .append("createTime", getCreateTime())
            .append("updateTime", getUpdateTime())
            .append("createBy", getCreateBy())
            .append("updateBy", getUpdateBy())
            .append("status", getStatus())
            .append("remark", getRemark())
            .toString();
    }
}