/* * Copyright [2020-2030] [https://www.stylefeng.cn] * * 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. * * Guns采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点: * * 1.请不要删除和修改根目录下的LICENSE文件。 * 2.请不要删除和修改Guns源码头部的版权声明。 * 3.请保留源码和相关描述文件的项目出处,作者声明等。 * 4.分发源码时候,请注明软件出处 https://gitee.com/stylefeng/guns * 5.在修改包名,模块名称,项目代码等时,请注明软件出处 https://gitee.com/stylefeng/guns * 6.若您的项目无法满足以上几点,可申请商业授权 */ package cn.stylefeng.roses.kernel.system.api; import cn.stylefeng.roses.kernel.auth.api.pojo.login.LoginUser; import cn.stylefeng.roses.kernel.system.api.pojo.user.OAuth2AuthUserDTO; import cn.stylefeng.roses.kernel.system.api.pojo.user.OnlineUserDTO; import cn.stylefeng.roses.kernel.system.api.pojo.user.SysUserDTO; import cn.stylefeng.roses.kernel.system.api.pojo.user.UserLoginInfoDTO; import cn.stylefeng.roses.kernel.system.api.pojo.user.request.OnlineUserRequest; import cn.stylefeng.roses.kernel.system.api.pojo.user.request.SysUserRequest; import java.util.Date; import java.util.List; import java.util.Set; /** * 用户管理服务接口 * * @author fengshuonan * @date 2020/10/20 13:20 */ public interface UserServiceApi { /** * 获取用户登录需要的详细信息(用在第一次获取登录用户) * * @param account 账号 * @return 用户登录需要的详细信息 * @author fengshuonan * @date 2020/10/20 16:59 */ UserLoginInfoDTO getUserLoginInfo(String account); /** * 获取刷新后的登录用户(用在用户登录之后调用) *
* 以往用户登录后直接从session缓存中获取用户信息,不能及时更新,需要退出才可以获取最新信息 *
* 本方法解决了实时获取当前登录用户不准确的问题
*
* @author fengshuonan
* @date 2021/7/29 22:03
*/
LoginUser getEffectiveLoginUser(LoginUser loginUser);
/**
* 更新用户的登录信息,一般为更新用户的登录时间和ip
*
* @param userId 用户id
* @param date 用户登录时间
* @param ip 用户登录的ip
* @author fengshuonan
* @date 2020/10/21 14:13
*/
void updateUserLoginInfo(Long userId, Date date, String ip);
/**
* 根据机构id集合删除对应的用户-数据范围关联信息
*
* @param organizationIds 组织架构id集合
* @author fengshuonan
* @date 2020/10/20 16:59
*/
void deleteUserDataScopeListByOrgIdList(Set