whycxzp
2022-07-22 8efdc4fe4d6a8c894a13b13f4992a4dc62f4f751
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModelProperty;
import org.apache.ibatis.type.Alias;
 
import java.util.Date;
import java.util.LinkedList;
import java.util.List;
 
@TableName(schema = "db_doc",value = "tb_worksheet_main")
@Alias("WorksheetMain")
public class WorksheetMain {
    private Integer   id;
    @ApiModelProperty("工单标题")
    private String title;
    @ApiModelProperty("任务描述")
    private String description;
    @ApiModelProperty("工单文件路径")
    private String file;
    @ApiModelProperty("工单创建人id")
    private Long   createUserId;
    @ApiModelProperty("工单开始时间")
    private Date  beginTime;
    @ApiModelProperty("工单结束时间")
    private Date endTime;
    @ApiModelProperty("工单级别")
    private Integer level;
    /**
     * 工单状态:
     * 0:员工处理中(已驳回)
     * 1:经理处理中
     * 2:总经理处理中
     * 5:归档
     * */
    private Integer status;
    @ApiModelProperty("工单结束意见")
    private String endReason;
 
    @ApiModelProperty("流程的下个处理人")
    @TableField(exist = false)
    private Long nextUser;
 
    @ApiModelProperty("提交人的意见描述")
    @TableField(exist = false)
    private String dealDesc;
 
    @TableField(exist = false)
    private String createUser;
 
    @ApiModelProperty("待审批产品bom")
    @TableField(exist = false)
    private List<ProductBomApproving> approvingBom;
 
    private LinkedList<WorksheetLink> links;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getFile() {
        return file;
    }
 
    public void setFile(String file) {
        this.file = file;
    }
 
    public Long getCreateUserId() {
        return createUserId;
    }
 
    public void setCreateUserId(Long createUserId) {
        this.createUserId = createUserId;
    }
 
    public Date getBeginTime() {
        return beginTime;
    }
 
    public void setBeginTime(Date beginTime) {
        this.beginTime = beginTime;
    }
 
    public Date getEndTime() {
        return endTime;
    }
 
    public void setEndTime(Date endTime) {
        this.endTime = endTime;
    }
 
    public Integer getLevel() {
        return level;
    }
 
    public void setLevel(Integer level) {
        this.level = level;
    }
 
    public String getEndReason() {
        return endReason;
    }
 
    public void setEndReason(String endReason) {
        this.endReason = endReason;
    }
 
    public Long getNextUser() {
        return nextUser;
    }
 
    public void setNextUser(Long nextUser) {
        this.nextUser = nextUser;
    }
 
    public String getDealDesc() {
        return dealDesc;
    }
 
    public void setDealDesc(String dealDesc) {
        this.dealDesc = dealDesc;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    public String getCreateUser() {
        return createUser;
    }
 
    public void setCreateUser(String createUser) {
        this.createUser = createUser;
    }
 
    public LinkedList<WorksheetLink> getLinks() {
        return links;
    }
 
    public void setLinks(LinkedList<WorksheetLink> links) {
        this.links = links;
    }
 
    public List<ProductBomApproving> getApprovingBom() {
        return approvingBom;
    }
 
    public void setApprovingBom(List<ProductBomApproving> approvingBom) {
        this.approvingBom = approvingBom;
    }
}