mitao
7 天以前 21488a55ba76ae4f1296b608fbcdf1f06036db64
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);
}