| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- package eVVM.apk.ui.bean;
- import java.util.List;
- /**
- * Created by Android Studio.
- * User: zbb
- * Date: 2019/6/7
- * Describe: ModelListBean
- */
- public class ModelListBean {
- /**
- * code : 200
- * msg : 成功
- * total : 2
- * page : 1
- * data : [{"id":2,"type":1,"content":"不可用","status":0,"remark":""},{"id":1,"type":1,"content":"可用","status":0,"remark":""}]
- */
- private int code;
- private String msg;
- private int total;
- private int page;
- 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 int getTotal() {
- return total;
- }
- public void setTotal(int total) {
- this.total = total;
- }
- public int getPage() {
- return page;
- }
- public void setPage(int page) {
- this.page = page;
- }
- public List<DataBean> getData() {
- return data;
- }
- public void setData(List<DataBean> data) {
- this.data = data;
- }
- public static class DataBean {
- /**
- * id : 2
- * type : 1
- * content : 不可用
- * status : 0
- * remark :
- */
- private int id;
- private int type;
- private String content;
- private int status;
- private String remark;
- public int getId() {
- return id;
- }
- public void setId(int id) {
- this.id = id;
- }
- public int getType() {
- return type;
- }
- public void setType(int type) {
- this.type = type;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public int getStatus() {
- return status;
- }
- public void setStatus(int status) {
- this.status = status;
- }
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- }
- }
|