From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 20 五月 2025 23:48:08 +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