package com.kuanzhai.driver.bean;
|
|
import java.util.List;
|
|
public class MsgSysBean {
|
|
/**
|
* code : 0
|
* data : [{"content":"string","id":0,"img":"string","read":0,"time":"string","title":"string","type":0}]
|
* msg : string
|
*/
|
|
private int code;
|
private String msg;
|
private List<DataBean> data;
|
|
public int getCode() {
|
return code;
|
}
|
|
public void setCode(int code) {
|
this.code = code;
|
}
|
|
public String getMsg() {
|
return msg;
|
}
|
|
public void setMsg(String msg) {
|
this.msg = msg;
|
}
|
|
public List<DataBean> getData() {
|
return data;
|
}
|
|
public void setData(List<DataBean> data) {
|
this.data = data;
|
}
|
|
public static class DataBean {
|
/**
|
* content : string
|
* id : 0
|
* img : string
|
* read : 0
|
* time : string
|
* title : string
|
* type : 0
|
*/
|
|
private String content;
|
private int id;
|
private String img;
|
private int read;
|
private String time;
|
private String title;
|
private int type;
|
|
public String getContent() {
|
return content;
|
}
|
|
public void setContent(String content) {
|
this.content = content;
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getImg() {
|
return img;
|
}
|
|
public void setImg(String img) {
|
this.img = img;
|
}
|
|
public int getRead() {
|
return read;
|
}
|
|
public void setRead(int read) {
|
this.read = read;
|
}
|
|
public String getTime() {
|
return time;
|
}
|
|
public void setTime(String time) {
|
this.time = time;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public int getType() {
|
return type;
|
}
|
|
public void setType(int type) {
|
this.type = type;
|
}
|
}
|
}
|