/** * Copyright (c) 2021 All rights reserved. * * 版权所有,侵权必究! */ package com.zt.modules.workflow.model; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import com.zt.common.entity.BusiEntity; import com.zt.common.entity.CompanyEntity; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import lombok.EqualsAndHashCode; import java.util.Date; @Data @ApiModel(value = "工作流实例WF_RUN_INSTANCE") @EqualsAndHashCode(callSuper=false) @TableName("WF_RUN_INSTANCE") public class WfRunInstance extends CompanyEntity { private static final long serialVersionUID = 1L; @ApiModelProperty(value = "") private Long prevId; @ApiModelProperty(value = "") private Long prevStepId; @ApiModelProperty(value = "") private Long flowId; @ApiModelProperty(value = "") private String flowCode; @ApiModelProperty(value = "") private Long stepId; @ApiModelProperty(value = "") private String stepName; @ApiModelProperty(value = "") private String stepMarker; @ApiModelProperty(value = "步骤运行位置") private String stepSite; @ApiModelProperty(value = "步骤运行位置") private Integer hasOut; @ApiModelProperty(value = "") private Integer status; @ApiModelProperty(value = "") private Integer runStatus; @ApiModelProperty(value = "") private Long bizId; @ApiModelProperty(value = "") private String bizGroupId; @ApiModelProperty(value = "") private String title; @ApiModelProperty(value = "") private String topic; @ApiModelProperty(value = "") private Long senderId; @ApiModelProperty(value = "") private String senderName; @ApiModelProperty(value = "") private Date senderTime; @ApiModelProperty(value = "") private Long applyUserId; @ApiModelProperty(value = "") private String applyUser; @ApiModelProperty(value = "") private Date applyTime; private String remark; }