You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
3.6 KiB
155 lines
3.6 KiB
1 year ago
|
package com.zc.business.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.ruoyi.common.annotation.Excel;
|
||
|
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
|
||
|
/**
|
||
|
* 事件处理流程对象 dc_event_process
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2024-01-03
|
||
|
*/
|
||
|
public class DcEventProcess extends BaseEntity
|
||
|
{
|
||
|
private static final long serialVersionUID = 1L;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
private Long id;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
|
private String eventId;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
|
private Date operationTime;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
|
private String operator;
|
||
|
|
||
|
/** 1-pc端
|
||
|
2-手机端 */
|
||
|
@Excel(name = "1-pc端 2-手机端")
|
||
|
private Integer source;
|
||
|
|
||
|
/** 1-节点
|
||
|
2-信息发布
|
||
|
*/
|
||
|
@Excel(name = "1-节点 2-信息发布 ")
|
||
|
private Integer processType;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
|
private String context;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
|
private Long processId;
|
||
|
|
||
|
/** $column.columnComment */
|
||
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
||
|
private String processName;
|
||
|
|
||
|
public void setId(Long id)
|
||
|
{
|
||
|
this.id = id;
|
||
|
}
|
||
|
|
||
|
public Long getId()
|
||
|
{
|
||
|
return id;
|
||
|
}
|
||
|
public void setEventId(String eventId)
|
||
|
{
|
||
|
this.eventId = eventId;
|
||
|
}
|
||
|
|
||
|
public String getEventId()
|
||
|
{
|
||
|
return eventId;
|
||
|
}
|
||
|
public void setOperationTime(Date operationTime)
|
||
|
{
|
||
|
this.operationTime = operationTime;
|
||
|
}
|
||
|
|
||
|
public Date getOperationTime()
|
||
|
{
|
||
|
return operationTime;
|
||
|
}
|
||
|
public void setOperator(String operator)
|
||
|
{
|
||
|
this.operator = operator;
|
||
|
}
|
||
|
|
||
|
public String getOperator()
|
||
|
{
|
||
|
return operator;
|
||
|
}
|
||
|
public void setSource(Integer source)
|
||
|
{
|
||
|
this.source = source;
|
||
|
}
|
||
|
|
||
|
public Integer getSource()
|
||
|
{
|
||
|
return source;
|
||
|
}
|
||
|
public void setProcessType(Integer processType)
|
||
|
{
|
||
|
this.processType = processType;
|
||
|
}
|
||
|
|
||
|
public Integer getProcessType()
|
||
|
{
|
||
|
return processType;
|
||
|
}
|
||
|
public void setContext(String context)
|
||
|
{
|
||
|
this.context = context;
|
||
|
}
|
||
|
|
||
|
public String getContext()
|
||
|
{
|
||
|
return context;
|
||
|
}
|
||
|
public void setProcessId(Long processId)
|
||
|
{
|
||
|
this.processId = processId;
|
||
|
}
|
||
|
|
||
|
public Long getProcessId()
|
||
|
{
|
||
|
return processId;
|
||
|
}
|
||
|
public void setProcessName(String processName)
|
||
|
{
|
||
|
this.processName = processName;
|
||
|
}
|
||
|
|
||
|
public String getProcessName()
|
||
|
{
|
||
|
return processName;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||
|
.append("id", getId())
|
||
|
.append("eventId", getEventId())
|
||
|
.append("operationTime", getOperationTime())
|
||
|
.append("operator", getOperator())
|
||
|
.append("source", getSource())
|
||
|
.append("processType", getProcessType())
|
||
|
.append("context", getContext())
|
||
|
.append("processId", getProcessId())
|
||
|
.append("processName", getProcessName())
|
||
|
.toString();
|
||
|
}
|
||
|
}
|