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.
178 lines
4.3 KiB
178 lines
4.3 KiB
package com.zc.business.domain;
|
|
|
|
import java.util.Date;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
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;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
import javax.validation.constraints.NotBlank;
|
|
|
|
/**
|
|
* 事件处理流程对象 dc_event_process
|
|
*
|
|
* @author ruoyi
|
|
* @date 2024-01-03
|
|
*/
|
|
public class DcEventProcess
|
|
{
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/** $column.columnComment */
|
|
@ApiModelProperty(value = "流水ID")
|
|
private Long id;
|
|
|
|
/** $column.columnComment */
|
|
@ApiModelProperty(value="事件ID")
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
private String eventId;
|
|
|
|
/** $column.columnComment */
|
|
@ApiModelProperty(value="操作时间")
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
private Date operationTime;
|
|
|
|
/** $column.columnComment */
|
|
@ApiModelProperty(value="操作人")
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
private String operator;
|
|
|
|
/** 1-pc端
|
|
2-手机端 */
|
|
@ApiModelProperty(value="来源")
|
|
@Excel(name = "1-pc端 2-手机端")
|
|
private Integer source;
|
|
|
|
/** 1-节点
|
|
2-信息发布
|
|
*/
|
|
@ApiModelProperty(value="流程类型")
|
|
@Excel(name = "1-节点 2-信息发布 ")
|
|
private Integer processType;
|
|
|
|
/** $column.columnComment */
|
|
@ApiModelProperty("内容")
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
private String context;
|
|
|
|
/** $column.columnComment */
|
|
@ApiModelProperty("流程ID")
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
private Long processId;
|
|
|
|
/** $column.columnComment */
|
|
@ApiModelProperty("流程名称")
|
|
@Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
|
|
private String processName;
|
|
|
|
public MultipartFile getFile() {
|
|
return file;
|
|
}
|
|
|
|
public void setFile(MultipartFile file) {
|
|
this.file = file;
|
|
}
|
|
|
|
@ApiModelProperty("上传文件")
|
|
private MultipartFile file;
|
|
|
|
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();
|
|
}
|
|
}
|
|
|