/**
* Copyright 2018-2020 stylefeng & fengshuonan (https://gitee.com/stylefeng)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.stylefeng.guns.base.auth.model;
import cn.stylefeng.roses.core.util.ToolUtil;
import lombok.Data;
import org.springframework.security.core.userdetails.UserDetails;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.Set;
/**
* 当前登录用户信息
*
* @author fengshuonan
* @Date 2019/7/18 22:29
*/
@Data
public class LoginUser implements UserDetails, Serializable {
private static final long serialVersionUID = 1L;
/**
* 用户主键ID
*/
private Long id;
/**
* 账号
*/
private String account;
/**
* 姓名
*/
private String name;
/**
* 邮箱
*/
private String email;
/**
* 头像
*/
private String avatar;
/**
* 部门id
*/
private Long deptId;
/**
* 角色集
*/
private List roleList;
/**
* 部门名称
*/
private String deptName;
/**
* 角色名称集
*/
private List roleNames;
public List getRoleList() {
return roleList;
}
public void setRoleList(List roleList) {
this.roleList = roleList;
}
public String getDeptName() {
return deptName;
}
public void setDeptName(String deptName) {
this.deptName = deptName;
}
public List getRoleNames() {
return roleNames;
}
public void setRoleNames(List roleNames) {
this.roleNames = roleNames;
}
public List getRoleTips() {
return roleTips;
}
public void setRoleTips(List roleTips) {
this.roleTips = roleTips;
}
public List