You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.0 KiB
Java
60 lines
1.0 KiB
Java
package com.rehome.zhdcoa.bean;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by ruihong on 2018/1/18.
|
|
*/
|
|
|
|
public class canexamBean {
|
|
/**
|
|
* Rows : [{"result":"1","msg":"操作成功!"}]
|
|
* Total : 1
|
|
*/
|
|
|
|
private int Total;
|
|
private List<RowsBean> Rows;
|
|
|
|
public int getTotal() {
|
|
return Total;
|
|
}
|
|
|
|
public void setTotal(int Total) {
|
|
this.Total = Total;
|
|
}
|
|
|
|
public List<RowsBean> getRows() {
|
|
return Rows;
|
|
}
|
|
|
|
public void setRows(List<RowsBean> Rows) {
|
|
this.Rows = Rows;
|
|
}
|
|
|
|
public static class RowsBean {
|
|
/**
|
|
* result : 1
|
|
* msg : 操作成功!
|
|
*/
|
|
|
|
private String result;
|
|
private String msg;
|
|
|
|
public String getResult() {
|
|
return result;
|
|
}
|
|
|
|
public void setResult(String result) {
|
|
this.result = result;
|
|
}
|
|
|
|
public String getMsg() {
|
|
return msg;
|
|
}
|
|
|
|
public void setMsg(String msg) {
|
|
this.msg = msg;
|
|
}
|
|
}
|
|
}
|