JavaApiInfoStatics.java
1.15 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;
public class JavaApiInfoStatics {
private Integer apiId;
private Integer mobjId;
private Byte isException;
private String exception;
private long startTime;
private long endTime;
public Integer getApiId() {
return apiId;
}
public void setApiId(Integer apiId) {
this.apiId = apiId;
}
public Integer getMobjId() {
return mobjId;
}
public void setMobjId(Integer mobjId) {
this.mobjId = mobjId;
}
public Byte getIsException() {
return isException;
}
public void setIsException(Byte isException) {
this.isException = isException;
}
public String getException() {
return exception;
}
public void setException(String exception) {
this.exception = exception == null ? null : exception.trim();
}
public long getStartTime() {
return startTime;
}
public void setStartTime(long startTime) {
this.startTime = startTime;
}
public long getEndTime() {
return endTime;
}
public void setEndTime(long endTime) {
this.endTime = endTime;
}
}