Skip to content

Commit

Permalink
添加实体combean
Browse files Browse the repository at this point in the history
  • Loading branch information
qingfengwlt committed Jun 23, 2017
1 parent 253f8b7 commit 892245b
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions app/src/main/java/com/superlibrary/ken/bean/ComBean.java
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 + '\'' +
'}';
}
}

0 comments on commit 892245b

Please sign in to comment.