| | |
| | | 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 { |
| | | |
| | |
| | | * @param loginUserInfo 登录用户信息 |
| | | * @return 身份信息 |
| | | */ |
| | | IdentityInformationVO getIdentityInformationVO(LoginUserInfoVO loginUserInfo); |
| | | IdentityInformation getIdentityInformation(LoginUserInfoVO loginUserInfo); |
| | | |
| | | /** |
| | | * 获取当前选中的身份信息 |
| | | */ |
| | | IdentityInformation getCurrentIdentityInformation(LoginUserInfoVO loginUserInfo); |
| | | } |