From 64f046ed41c2ae607dc065c82b6d454f64e90584 Mon Sep 17 00:00:00 2001 From: whyclxw <810412026@qq.com> Date: 星期四, 19 六月 2025 21:52:33 +0800 Subject: [PATCH] 预警分析管理-电源告警 --- src/main/java/com/whyc/pojo/web_site/WorkflowLink.java | 288 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 288 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/whyc/pojo/web_site/WorkflowLink.java b/src/main/java/com/whyc/pojo/web_site/WorkflowLink.java new file mode 100644 index 0000000..226db57 --- /dev/null +++ b/src/main/java/com/whyc/pojo/web_site/WorkflowLink.java @@ -0,0 +1,288 @@ +package com.whyc.pojo.web_site; + +import com.baomidou.mybatisplus.annotation.TableField; +import com.baomidou.mybatisplus.annotation.TableName; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import io.swagger.annotations.ApiModelProperty; +import lombok.ToString; +import org.apache.ibatis.type.Alias; + +import java.util.Date; +import java.util.List; + +/** + * 宸ヤ綔娴佽妭鐐硅〃 + */ +@ToString +@Alias("WorkflowLink") +@TableName(schema = "web_site",value = "tb_workflow_link") +@JsonIgnoreProperties(ignoreUnknown = true) +public class WorkflowLink { + + private Integer id; + @ApiModelProperty("涓昏〃id") + private Integer mainId; + @ApiModelProperty("涓婄骇id") + private Integer parentId; + @ApiModelProperty("澶勭悊灞傜骇") + private String processStage; + @ApiModelProperty("澶勭悊灞傜骇鍚嶇О") + private String processName; + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date createTime; + @ApiModelProperty("澶勭悊浜篿d") + private Integer dealUserId; + @ApiModelProperty("澶勭悊绫诲瀷") + private Integer dealType; + @ApiModelProperty("澶勭悊鎻忚堪") + private String dealDesc; + @ApiModelProperty("澶勭悊闄勪欢鍚嶇О") + private String dealFileName; + @ApiModelProperty("澶勭悊闄勪欢鍦板潃") + private String dealFileUrl; + @ApiModelProperty("澶勭悊鍥剧墖鍚嶇О") + private String dealPicName; + @ApiModelProperty("澶勭悊鍥剧墖鍦板潃") + private String dealPicUrl; + @ApiModelProperty("鑺傜偣鐘舵��") + private Integer status; + @ApiModelProperty("澶勭悊瑙掕壊") + private Integer dealRoleId; + @ApiModelProperty("澶勭悊瀹岃兘鍚﹀綊妗�") + private Integer dealAndClose; + @ApiModelProperty("椹冲洖鍘熷洜") + private String dealRejectReason; + @ApiModelProperty("瀛愪换鍔℃暟") + private Integer dealTaskNum; + @ApiModelProperty("瀛愪换鍔″洖澶嶆暟") + private Integer dealTaskReplyNum; + @ApiModelProperty("澶勭悊寤鸿") + private String dealReason; + @ApiModelProperty("澶勭悊鏃堕棿") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date dealTime; + @ApiModelProperty("瑕佹眰瀹屾垚鏃堕棿") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date requiredFinishTime; + @ApiModelProperty("瀹℃壒鍥炲鍐呭") + private String replyContent; + @ApiModelProperty("瀹℃壒鍥炲鏃堕棿") + @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date replyTime; + + @TableField(exist = false) + private List<Integer> dealUserIdList; + + @TableField(exist = false) + private WorkflowMain workflowMain; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getMainId() { + return mainId; + } + + public void setMainId(Integer mainId) { + this.mainId = mainId; + } + + public Integer getParentId() { + return parentId; + } + + public void setParentId(Integer parentId) { + this.parentId = parentId; + } + + public String getProcessStage() { + return processStage; + } + + public void setProcessStage(String processStage) { + this.processStage = processStage; + } + + public String getProcessName() { + return processName; + } + + public void setProcessName(String processName) { + this.processName = processName; + } + + public Date getCreateTime() { + return createTime; + } + + public void setCreateTime(Date createTime) { + this.createTime = createTime; + } + + public Integer getDealUserId() { + return dealUserId; + } + + public void setDealUserId(Integer dealUserId) { + this.dealUserId = dealUserId; + } + + public Integer getDealType() { + return dealType; + } + + public void setDealType(Integer dealType) { + this.dealType = dealType; + } + + public String getDealDesc() { + return dealDesc; + } + + public void setDealDesc(String dealDesc) { + this.dealDesc = dealDesc; + } + + public String getDealFileName() { + return dealFileName; + } + + public void setDealFileName(String dealFileName) { + this.dealFileName = dealFileName; + } + + public String getDealFileUrl() { + return dealFileUrl; + } + + public void setDealFileUrl(String dealFileUrl) { + this.dealFileUrl = dealFileUrl; + } + + public String getDealPicName() { + return dealPicName; + } + + public void setDealPicName(String dealPicName) { + this.dealPicName = dealPicName; + } + + public String getDealPicUrl() { + return dealPicUrl; + } + + public void setDealPicUrl(String dealPicUrl) { + this.dealPicUrl = dealPicUrl; + } + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Integer getDealRoleId() { + return dealRoleId; + } + + public void setDealRoleId(Integer dealRoleId) { + this.dealRoleId = dealRoleId; + } + + public Integer getDealAndClose() { + return dealAndClose; + } + + public void setDealAndClose(Integer dealAndClose) { + this.dealAndClose = dealAndClose; + } + + public String getDealRejectReason() { + return dealRejectReason; + } + + public void setDealRejectReason(String dealRejectReason) { + this.dealRejectReason = dealRejectReason; + } + + public Integer getDealTaskNum() { + return dealTaskNum; + } + + public void setDealTaskNum(Integer dealTaskNum) { + this.dealTaskNum = dealTaskNum; + } + + public Integer getDealTaskReplyNum() { + return dealTaskReplyNum; + } + + public void setDealTaskReplyNum(Integer dealTaskReplyNum) { + this.dealTaskReplyNum = dealTaskReplyNum; + } + + public String getDealReason() { + return dealReason; + } + + public void setDealReason(String dealReason) { + this.dealReason = dealReason; + } + + public Date getDealTime() { + return dealTime; + } + + public void setDealTime(Date dealTime) { + this.dealTime = dealTime; + } + + public List<Integer> getDealUserIdList() { + return dealUserIdList; + } + + public void setDealUserIdList(List<Integer> dealUserIdList) { + this.dealUserIdList = dealUserIdList; + } + + public Date getRequiredFinishTime() { + return requiredFinishTime; + } + + public void setRequiredFinishTime(Date requiredFinishTime) { + this.requiredFinishTime = requiredFinishTime; + } + + public String getReplyContent() { + return replyContent; + } + + public void setReplyContent(String replyContent) { + this.replyContent = replyContent; + } + + public Date getReplyTime() { + return replyTime; + } + + public void setReplyTime(Date replyTime) { + this.replyTime = replyTime; + } + + public WorkflowMain getWorkflowMain() { + return workflowMain; + } + + public void setWorkflowMain(WorkflowMain workflowMain) { + this.workflowMain = workflowMain; + } + +} -- Gitblit v1.9.1