1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.panzhihua.sangeshenbian.service;
|
| import com.panzhihua.common.model.vos.LoginUserInfoVO;
| import com.panzhihua.sangeshenbian.warpper.IdentityInformationVO;
|
| public interface IdentityInformationService {
|
| /**
| * 获取身份信息
| * @param loginUserInfo 登录用户信息
| * @return 身份信息
| */
| IdentityInformationVO getIdentityInformationVO(LoginUserInfoVO loginUserInfo);
| }
|
|