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",required = true) @NotBlank(message = "流水ID不能为空") private Long id; /** $column.columnComment */ @ApiModelProperty(value="事件ID",required = true) @NotBlank(message = "事件ID不能为空") @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") private String eventId; /** $column.columnComment */ @ApiModelProperty(value="操作时间",required = true) @NotBlank(message = "操作时间不能为空") @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") private Date operationTime; /** $column.columnComment */ @ApiModelProperty(value="操作人",required = true) @NotBlank(message = "操作人不能为空") @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()") private String operator; /** 1-pc端 2-手机端 */ @ApiModelProperty(value="来源",required = true) @NotBlank(message = "来源不能为空") @Excel(name = "1-pc端 2-手机端") private Integer source; /** 1-节点 2-信息发布 */ @ApiModelProperty(value="流程类型",required = true) @NotBlank(message = "流程类型不能为空") @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(); } }