From 40bfb646d1b962d33841c1ebbceb0dd7cb668bfb Mon Sep 17 00:00:00 2001 From: liujie <1793218484@qq.com> Date: 星期二, 29 四月 2025 14:54:04 +0800 Subject: [PATCH] 后台日志管理 --- springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/service/IdentityInformationService.java | 9 +++++++-- 1 files changed, 7 insertions(+), 2 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/service/IdentityInformationService.java b/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/service/IdentityInformationService.java index 4c7c8da..b32da49 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/service/IdentityInformationService.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_sangeshenbian/src/main/java/com/panzhihua/sangeshenbian/service/IdentityInformationService.java @@ -1,7 +1,7 @@ package com.panzhihua.sangeshenbian.service; import com.panzhihua.common.model.vos.LoginUserInfoVO; -import com.panzhihua.sangeshenbian.warpper.IdentityInformationVO; +import com.panzhihua.sangeshenbian.warpper.IdentityInformation; public interface IdentityInformationService { @@ -10,5 +10,10 @@ * @param loginUserInfo 登录用户信息 * @return 身份信息 */ - IdentityInformationVO getIdentityInformationVO(LoginUserInfoVO loginUserInfo); + IdentityInformation getIdentityInformation(LoginUserInfoVO loginUserInfo); + + /** + * 获取当前选中的身份信息 + */ + IdentityInformation getCurrentIdentityInformation(LoginUserInfoVO loginUserInfo); } -- Gitblit v1.7.1