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.
47 lines
706 B
Java
47 lines
706 B
Java
package com.rehome.zhdcoa.bean;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Created by ruihong on 2017/10/10.
|
|
*/
|
|
|
|
public class CKSHQXBean {
|
|
|
|
private String Total;
|
|
private List<RowsBean> Rows;
|
|
|
|
public String getTotal() {
|
|
return Total;
|
|
}
|
|
|
|
public void setTotal(String total) {
|
|
Total = total;
|
|
}
|
|
|
|
public List<RowsBean> getRows() {
|
|
return Rows;
|
|
}
|
|
|
|
public void setRows(List<RowsBean> rows) {
|
|
Rows = rows;
|
|
}
|
|
|
|
public static class RowsBean{
|
|
|
|
private String status;
|
|
|
|
public String getStatus() {
|
|
return status;
|
|
}
|
|
|
|
public void setStatus(String status) {
|
|
this.status = status;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|