“djh”
2025-03-25 a06aacdfa9fdc493eedfb5f5784853b1d8386165
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package com.gkhy.sign.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.ruoyi.common.core.domain.BaseEntity;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
 
import javax.validation.constraints.NotNull;
 
@TableName(value = "signature_flow")
@ApiModel(value = "流转记录对象", description = "流转记录对象")
public class SignatureFlow extends BaseEntity {
 
    @TableId(type = IdType.AUTO)
    private Integer id;
    @NotNull(message = "项目id不能为空")
    @ApiModelProperty(value = "项目id")
    private Long itemId;
    @NotNull(message = "操作人id不能为空")
    @ApiModelProperty(value = "操作人id")
    private Long userId;
    @ApiModelProperty(value = "操作人姓名")
    private String userName;
    @NotNull(message = "操作人部门不能为空")
    @ApiModelProperty(value = "操作人部门")
    private Long deptId;
    private String deptName;
    @NotNull(message = "流向人id不能为空")
    @ApiModelProperty(value = "流向人id")
    private Long signUserId;
    @ApiModelProperty(value = "流向人姓名")
    private String signUserName;
    @NotNull(message = "流向人部门不能为空")
    @ApiModelProperty(value = "流向人部门")
    private Long signDeptId;
 
    private String signDeptName;
 
    private String filePath;
    private Integer status;
    private Integer sort;
    private Integer delFlag;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Long getItemId() {
        return itemId;
    }
 
    public void setItemId(Long itemId) {
        this.itemId = itemId;
    }
 
    public Long getUserId() {
        return userId;
    }
 
    public void setUserId(Long userId) {
        this.userId = userId;
    }
 
    public String getUserName() {
        return userName;
    }
 
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    public Long getDeptId() {
        return deptId;
    }
 
    public void setDeptId(Long deptId) {
        this.deptId = deptId;
    }
 
    public Long getSignUserId() {
        return signUserId;
    }
 
    public void setSignUserId(Long signUserId) {
        this.signUserId = signUserId;
    }
 
    public String getSignUserName() {
        return signUserName;
    }
 
    public void setSignUserName(String signUserName) {
        this.signUserName = signUserName;
    }
 
    public Long getSignDeptId() {
        return signDeptId;
    }
 
    public void setSignDeptId(Long signDeptId) {
        this.signDeptId = signDeptId;
    }
 
    public String getSignDeptName() {
        return signDeptName;
    }
 
    public void setSignDeptName(String signDeptName) {
        this.signDeptName = signDeptName;
    }
 
    public Integer getDelFlag() {
        return delFlag;
    }
 
    public void setDelFlag(Integer delFlag) {
        this.delFlag = delFlag;
    }
 
    public String getDeptName() {
        return deptName;
    }
 
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
 
    public String getFilePath() {
        return filePath;
    }
 
    public void setFilePath(String filePath) {
        this.filePath = filePath;
    }
 
 
    public Integer getSort() {
        return sort;
    }
 
    public void setSort(Integer sort) {
        this.sort = sort;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
}