-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
253f8b7
commit 892245b
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package com.superlibrary.ken.bean; | ||
|
||
/** | ||
* Created by PC_WLT on 2017/4/26. | ||
*/ | ||
|
||
public class ComBean { | ||
|
||
private String id; | ||
private String msg; | ||
private String code; | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public void setId(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getMsg() { | ||
return msg; | ||
} | ||
|
||
public void setMsg(String msg) { | ||
this.msg = msg; | ||
} | ||
|
||
public String getCode() { | ||
return code; | ||
} | ||
|
||
public void setCode(String code) { | ||
this.code = code; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "ComBean{" + | ||
"id='" + id + '\'' + | ||
", msg='" + msg + '\'' + | ||
", code='" + code + '\'' + | ||
'}'; | ||
} | ||
} |