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
965 B
Java
51 lines
965 B
Java
|
2 years ago
|
package com.rehome.meetingbook.bean;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 班组
|
||
|
|
*/
|
||
|
|
public class DeptBzBean {
|
||
|
|
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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|