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);
|
}
|