liujie
2025-05-21 ee6a2aa9e265f498ce7df9c603d3148487c0b1e8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.panzhihua.sangeshenbian.service;
 
import com.panzhihua.common.model.vos.LoginUserInfoVO;
import com.panzhihua.sangeshenbian.warpper.IdentityInformation;
 
public interface IdentityInformationService {
 
    /**
     * 获取身份信息
     * @param loginUserInfo 登录用户信息
     * @return 身份信息
     */
    IdentityInformation getIdentityInformation(LoginUserInfoVO loginUserInfo);
 
    /**
     * 获取当前选中的身份信息
     */
    IdentityInformation getCurrentIdentityInformation(LoginUserInfoVO loginUserInfo);
}