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.
70 lines
1.2 KiB
Java
70 lines
1.2 KiB
Java
package com.rehome.zhdcoa.bean;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by ruihong on 2018/1/5.
|
|
*/
|
|
|
|
public class delkjBean {
|
|
/**
|
|
* Rows : [{"result":"1","msg":"删除成功!","id":""}]
|
|
* 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 : 删除成功!
|
|
* id :
|
|
*/
|
|
|
|
private String result;
|
|
private String msg;
|
|
private String id;
|
|
|
|
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;
|
|
}
|
|
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
}
|
|
}
|