package com.mindskip.xzs.domain.vo;
|
|
import com.mindskip.xzs.domain.Department;
|
import com.mindskip.xzs.domain.User;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
public class DepartmentVO implements Serializable {
|
private Department department;
|
|
private List<User> userList;
|
|
public Department getDepartment() {
|
return department;
|
}
|
|
public void setDepartment(Department department) {
|
this.department = department;
|
}
|
|
public List<User> getUserList() {
|
return userList;
|
}
|
|
public void setUserList(List<User> userList) {
|
this.userList = userList;
|
}
|
}
|