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.

51 lines
959 B
Java

package com.rehome.sbcksyy.bean;
import java.util.List;
/**
* 部门
*/
public class DeptBean {
private String Total;
private List<RowsBean> Rows;
public String getTotal() {
return Total;
}
public void setTotal(String Total) {
this.Total = Total;
}
public List<RowsBean> getRows() {
return Rows;
}
public void setRows(List<RowsBean> Rows) {
this.Rows = Rows;
}
public static class RowsBean {
private String deptname;
private String deptcode;
public String getDeptname() {
return deptname;
}
public void setDeptname(String deptname) {
this.deptname = deptname;
}
public String getDeptcode() {
return deptcode;
}
public void setDeptcode(String deptcode) {
this.deptcode = deptcode;
}
}
}