PendingJob.java
1004 Bytes
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
package com.model;
import lombok.Data;
import java.util.List;
/**
* Created by zhengyouwei on 2016/9/2.
* <p>
* 待处理工单列表
*/
@Data
public class PendingJob {
public PendingJob() {
}
public PendingJob(String type,String workId, String title, String handler, String handlerRole, int currentStatus) {
this.type = type;
this.workId = workId;
this.title = title;
this.handler = handler;
this.handlerRole = handlerRole;
this.currentStatus = currentStatus;
}
private int id;
/**
* 工单ID
*/
private String workId;
/**
* 主题
*/
private String title;
/**
* 类型 release or
*/
private String type;
/**
* 待处理人
*/
private String handler;
/**
* 当前状态
*/
private int currentStatus;
/**
* 处理人的职责 develop test operator
*/
private String handlerRole;
private String createTime;
}