ConsultVulmanageSyncEntity.java
3.06 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
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
package com.idss.vulsync.mvc.pojo.db;
import java.util.Date;
public class ConsultVulmanageSyncEntity {
private String id;
private String transId;
private String filePath;
private String user;
private String creditType;
private String credit;
private String pubKey;
private String initDelay;
private String updCycle;
private String initFilePath;
private String latestFilePath;
private String latestEsId;
private Date latestUploadTime;
private Date createTime;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getTransId() {
return transId;
}
public void setTransId(String transId) {
this.transId = transId == null ? null : transId.trim();
}
public String getFilePath() {
return filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath == null ? null : filePath.trim();
}
public String getUser() {
return user;
}
public void setUser(String user) {
this.user = user == null ? null : user.trim();
}
public String getCreditType() {
return creditType;
}
public void setCreditType(String creditType) {
this.creditType = creditType == null ? null : creditType.trim();
}
public String getCredit() {
return credit;
}
public void setCredit(String credit) {
this.credit = credit == null ? null : credit.trim();
}
public String getPubKey() {
return pubKey;
}
public void setPubKey(String pubKey) {
this.pubKey = pubKey == null ? null : pubKey.trim();
}
public String getInitDelay() {
return initDelay;
}
public void setInitDelay(String initDelay) {
this.initDelay = initDelay == null ? null : initDelay.trim();
}
public String getUpdCycle() {
return updCycle;
}
public void setUpdCycle(String updCycle) {
this.updCycle = updCycle == null ? null : updCycle.trim();
}
public String getInitFilePath() {
return initFilePath;
}
public void setInitFilePath(String initFilePath) {
this.initFilePath = initFilePath == null ? null : initFilePath.trim();
}
public String getLatestFilePath() {
return latestFilePath;
}
public void setLatestFilePath(String latestFilePath) {
this.latestFilePath = latestFilePath == null ? null : latestFilePath.trim();
}
public String getLatestEsId() {
return latestEsId;
}
public void setLatestEsId(String latestEsId) {
this.latestEsId = latestEsId == null ? null : latestEsId.trim();
}
public Date getLatestUploadTime() {
return latestUploadTime;
}
public void setLatestUploadTime(Date latestUploadTime) {
this.latestUploadTime = latestUploadTime;
}
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
}