HandledJob.java
1.17 KB
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
package com.model;
import lombok.Data;
/**
* Created by zhengyouwei on 2016/9/2.
* <p>
* 已处理工单表
*/
@Data
public class HandledJob {
public HandledJob() {
}
public HandledJob(String type,String workId, String title, String handler, String handlerRole, int handleType,String handlecType) {
this.type = type;
this.workId = workId;
this.title = title;
this.handler = handler;
this.handlerRole = handlerRole;
this.handleType = handleType;
this.handlecType = handlecType;
}
private int id;
/**
* 工单ID
*/
private String workId;
/**
* 工单主题
*/
private String title;
/**
* 工单类型
*/
private String type;
/**
* 处理人
*/
private String handler;
/**
* 处理人的职责 develop test operator
*/
private String handlerRole;
/**
* 处理类型 1 发起 2 通过 3 驳回 -1 close 4 审核通过
*/
private int handleType;
private String handlecType;
/**
*
*/
private String createTime;
private String dbNeedTest;
private String dbTestName;
}