ResponseHead.java
955 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
package com.cjs.site.model.sand;
import java.io.Serializable;
/**
* Created by bruce on 2019-04-22 15:17
*/
public class ResponseHead implements Serializable{
private static final long serialVersionUID = 240250866504894146L;
private String version;
private String respCode;
private String respMsg;
private String respTime;
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getRespCode() {
return respCode;
}
public void setRespCode(String respCode) {
this.respCode = respCode;
}
public String getRespMsg() {
return respMsg;
}
public void setRespMsg(String respMsg) {
this.respMsg = respMsg;
}
public String getRespTime() {
return respTime;
}
public void setRespTime(String respTime) {
this.respTime = respTime;
}
}