JavaApiInfoStatics.java
817 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
package com.model;
public class JavaApiInfoStatics {
private Integer apiId;
private Integer mobjId;
private Byte isException;
private String exception;
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();
}
}