package com.rehome.sbcksyy.bean; import java.util.List; /** * 部门 */ public class DeptBean { private String Total; private List Rows; public String getTotal() { return Total; } public void setTotal(String Total) { this.Total = Total; } public List getRows() { return Rows; } public void setRows(List 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; } } }