88e030b7
王彪总
init project
|
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
|
package com.java110.po.log;
import java.io.Serializable;
public class LogSystemErrorPo implements Serializable {
private String msg;
private String errType;
private String errId;
private String statusCd = "0";
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
public String getErrType() {
return errType;
}
public void setErrType(String errType) {
this.errType = errType;
}
public String getErrId() {
return errId;
}
public void setErrId(String errId) {
this.errId = errId;
}
public String getStatusCd() {
return statusCd;
}
public void setStatusCd(String statusCd) {
this.statusCd = statusCd;
}
}
|