package com.ycl.domain.entity; import com.ycl.common.annotation.Excel; import com.ycl.common.core.domain.BaseEntity; import com.ycl.domain.dto.FlowListenerFieldDTO; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import java.util.List; /** * 流程监听对象 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; /** 默认的注入字段 */ private String fieldsStr; /** 默认的注入字段 */ private List fields; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getEventType() { return eventType; } public void setEventType(String eventType) { this.eventType = eventType; } public String getValueType() { return valueType; } public void setValueType(String valueType) { this.valueType = valueType; } public String getValue() { return value; } public void setValue(String value) { this.value = value; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public String getFieldsStr() { return fieldsStr; } public void setFieldsStr(String fieldsStr) { this.fieldsStr = fieldsStr; } public List getFields() { return fields; } public void setFields(List fields) { this.fields = fields; } @Override public String toString() { return "SysListener{" + "id=" + id + ", name='" + name + '\'' + ", type='" + type + '\'' + ", eventType='" + eventType + '\'' + ", valueType='" + valueType + '\'' + ", value='" + value + '\'' + ", status=" + status + ", fieldsStr='" + fieldsStr + '\'' + ", fields=" + fields + '}'; } }