准备加入路由守卫!

This commit is contained in:
Kane Wang 2023-01-10 18:33:36 +08:00
parent 327ffcc235
commit 9a82496769
1 changed files with 17 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2022-12-15 11:17:26 * @Date: 2022-12-15 11:17:26
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2022-12-23 17:42:47 * @LastEditTime: 2023-01-10 14:58:53
* @FilePath: \AdminSys\src\main\java\com\cpic\xim\web\controllers\account\P13AccountCheckResult.java * @FilePath: \AdminSys\src\main\java\com\cpic\xim\web\controllers\account\P13AccountCheckResult.java
* @Description: * @Description:
* *
@ -49,6 +49,17 @@ public class P13AccountCheckResult
this.staffInfo = staffInfo; this.staffInfo = staffInfo;
} }
public String getToken()
{
return token;
}
public void setToken( String token )
{
this.token = token;
}
@Override @Override
public int hashCode() public int hashCode()
{ {
@ -88,7 +99,12 @@ public class P13AccountCheckResult
@JsonProperty( "message") @JsonProperty( "message")
private String message; private String message;
// 用户的token
@JsonProperty( "token")
private String token;
// 验证成功后查询到的人员信息 // 验证成功后查询到的人员信息
@JsonProperty( "staff_info") @JsonProperty( "staff_info")
CpicXIMStaffInfo staffInfo; CpicXIMStaffInfo staffInfo;
} }