jinlin
2024-01-31 9025b9cf7ec8610003d445a31d93e35e7bd73c2e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/**
 * 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;
}