/*
|
Copyright [2020] [https://www.xiaonuo.vip]
|
|
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.
|
|
Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
|
|
1.请不要删除和修改根目录下的LICENSE文件。
|
2.请不要删除和修改Snowy源码头部的版权声明。
|
3.请保留源码和相关描述文件的项目出处,作者声明等。
|
4.分发源码时候,请注明软件出处 https://gitee.com/xiaonuobase/snowy
|
5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/xiaonuobase/snowy
|
6.若您的项目无法满足以上几点,可申请商业授权,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
|
*/
|
package vip.xiaonuo.core.context.system;
|
|
import cn.hutool.core.lang.Dict;
|
import vip.xiaonuo.core.pojo.base.validate.UniqueValidateParam;
|
import vip.xiaonuo.core.pojo.login.SysLoginUser;
|
|
import java.util.List;
|
|
/**
|
* 系统相关上下文接口,在system模块实现,用于某些模块不能引用system模块时,通过此方式调用system相关功能
|
*
|
* @author xuyuxiang
|
* @date 2020/5/6 14:52
|
*/
|
public interface SystemContext {
|
|
/**
|
* 根据用户id获取姓名
|
*
|
* @param userId 用户id
|
* @return 用户姓名
|
* @author xuyuxiang
|
* @date 2020/5/6 14:57
|
*/
|
String getNameByUserId(Long userId);
|
|
/**
|
* 根据角色id获取角色名称
|
*
|
* @param roleId 角色id
|
* @return 角色名称
|
* @author xuyuxiang
|
* @date 2020/5/22 15:55
|
*/
|
String getNameByRoleId(Long roleId);
|
|
/**
|
* 根据token获取登录用户信息
|
*
|
* @param token token
|
* @return 登录用户信息
|
* @author xuyuxiang
|
* @date 2020/3/13 11:59
|
*/
|
SysLoginUser getLoginUserByToken(String token);
|
|
/**
|
* 根据用户账号模糊搜索系统用户列表
|
*
|
* @param account 账号
|
* @return 增强版hashMap,格式:[{"id:":123, "firstName":"张三"}]
|
* @author xuyuxiang
|
* @date 2020/6/1 15:12
|
*/
|
List<Dict> listUser(String account);
|
|
/**
|
* 根据角色名模糊搜索系统角色列表
|
*
|
* @param name 角色名
|
* @return 增强版hashMap,格式:[{"id:":123, "name":"总经理"}]
|
* @author xuyuxiang
|
* @date 2020/6/1 15:13
|
*/
|
List<Dict> listRole(String name);
|
|
/**
|
* 根据id判断是否是用户
|
*
|
* @param userOrRoleId 用户或角色id
|
* @return true是 false否
|
* @author xuyuxiang
|
* @date 2020/8/4 20:56
|
*/
|
boolean isUser(Long userOrRoleId);
|
|
/**
|
* 根据id判断是否是角色
|
*
|
* @param userOrRoleId 用户或角色id
|
* @return true是 false否
|
* @author xuyuxiang
|
* @date 2020/8/4 20:56
|
*/
|
boolean isRole(Long userOrRoleId);
|
|
/**
|
* 根据字典类型获取字典的code值
|
*
|
* @param dictTypeCodes 字典类型编码值
|
* @return 字典的code值
|
* @author xuyuxiang
|
* @date 2020/8/9 14:18
|
*/
|
List<String> getDictCodesByDictTypeCode(String... dictTypeCodes);
|
|
/**
|
* 校验某个表中,某一列是否存在重复的值
|
* <p>
|
* 一般用于唯一code校验
|
*
|
* @param uniqueValidateParam 被校验的参数
|
* @return true-是唯一的值,false-不是唯一的
|
* @author xuyuxiang
|
* @date 2020/8/9 21:41
|
*/
|
boolean tableUniValueFlag(UniqueValidateParam uniqueValidateParam);
|
|
/**
|
* 获取系统用户id集合
|
*
|
* @return 用户id集合
|
* @author xuyuxiang
|
* @date 2020/9/11 17:53
|
**/
|
List<Long> getAllUserIdList();
|
|
}
|