用户管理等
This commit is contained in:
@@ -40,6 +40,58 @@ public class TbSysDeptRole extends BaseDTO {
|
||||
*/
|
||||
public String updater;
|
||||
|
||||
public TbSysDeptRole() {
|
||||
super();
|
||||
}
|
||||
|
||||
public String getDeptID() {
|
||||
return deptID;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setDeptID(String deptID) {
|
||||
this.deptID = deptID;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getRoleID() {
|
||||
return roleID;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setRoleID(String roleID) {
|
||||
this.roleID = roleID;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getCreator() {
|
||||
return creator;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setCreator(String creator) {
|
||||
this.creator = creator;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getUpdater() {
|
||||
return updater;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setUpdater(String updater) {
|
||||
this.updater = updater;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "TbSysDeptRole{" +
|
||||
|
||||
@@ -2,12 +2,19 @@ package org.xyzh.common.vo;
|
||||
|
||||
import org.xyzh.common.dto.dept.TbSysDept;
|
||||
import org.xyzh.common.dto.role.TbSysRole;
|
||||
import org.xyzh.common.dto.user.TbSysUser;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class DeptRoleVO {
|
||||
|
||||
private TbSysDept dept;
|
||||
private TbSysRole role;
|
||||
|
||||
private List<TbSysDept> depts;
|
||||
private List<TbSysRole> roles;
|
||||
private List<TbSysUser> users;
|
||||
|
||||
public TbSysDept getDept() {
|
||||
return dept;
|
||||
}
|
||||
@@ -23,4 +30,29 @@ public class DeptRoleVO {
|
||||
public void setRole(TbSysRole role) {
|
||||
this.role = role;
|
||||
}
|
||||
|
||||
public List<TbSysDept> getDepts() {
|
||||
return depts;
|
||||
}
|
||||
|
||||
public void setDepts(List<TbSysDept> depts) {
|
||||
this.depts = depts;
|
||||
}
|
||||
|
||||
public List<TbSysRole> getRoles() {
|
||||
return roles;
|
||||
}
|
||||
|
||||
public void setRoles(List<TbSysRole> roles) {
|
||||
this.roles = roles;
|
||||
}
|
||||
|
||||
public List<TbSysUser> getUsers() {
|
||||
return users;
|
||||
}
|
||||
|
||||
public void setUsers(List<TbSysUser> users) {
|
||||
this.users = users;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,51 @@
|
||||
package org.xyzh.common.vo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.xyzh.common.dto.BaseDTO;
|
||||
import org.xyzh.common.dto.dept.TbSysDept;
|
||||
import org.xyzh.common.dto.role.TbSysRole;
|
||||
import org.xyzh.common.dto.user.TbSysUser;
|
||||
import org.xyzh.common.dto.user.TbSysUserDeptRole;
|
||||
|
||||
public class UserDeptRoleVO extends BaseDTO{
|
||||
private TbSysUser user;
|
||||
private List<TbSysUser> users;
|
||||
private List<TbSysDept> depts;
|
||||
private List<TbSysRole> roles;
|
||||
private List<TbSysUserDeptRole> userDeptRoles;
|
||||
|
||||
public TbSysUser getUser() {
|
||||
return user;
|
||||
}
|
||||
public void setUser(TbSysUser user) {
|
||||
this.user = user;
|
||||
}
|
||||
public List<TbSysUser> getUsers() {
|
||||
return users;
|
||||
}
|
||||
public void setUsers(List<TbSysUser> users) {
|
||||
this.users = users;
|
||||
}
|
||||
public List<TbSysDept> getDepts() {
|
||||
return depts;
|
||||
}
|
||||
public void setDepts(List<TbSysDept> depts) {
|
||||
this.depts = depts;
|
||||
}
|
||||
public List<TbSysRole> getRoles() {
|
||||
return roles;
|
||||
}
|
||||
public void setRoles(List<TbSysRole> roles) {
|
||||
this.roles = roles;
|
||||
}
|
||||
public List<TbSysUserDeptRole> getUserDeptRoles() {
|
||||
return userDeptRoles;
|
||||
}
|
||||
public void setUserDeptRoles(List<TbSysUserDeptRole> userDeptRoles) {
|
||||
this.userDeptRoles = userDeptRoles;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user