From 9a82496769996871866eed96033dd2be55c604b5 Mon Sep 17 00:00:00 2001 From: Kane Wang Date: Tue, 10 Jan 2023 18:33:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=87=86=E5=A4=87=E5=8A=A0=E5=85=A5=E8=B7=AF?= =?UTF-8?q?=E7=94=B1=E5=AE=88=E5=8D=AB=EF=BC=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../account/P13AccountCheckResult.java | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/企业级管理系统/java/AdminSys/src/main/java/com/cpic/xim/web/controllers/account/P13AccountCheckResult.java b/企业级管理系统/java/AdminSys/src/main/java/com/cpic/xim/web/controllers/account/P13AccountCheckResult.java index 90f33b5..666ee97 100644 --- a/企业级管理系统/java/AdminSys/src/main/java/com/cpic/xim/web/controllers/account/P13AccountCheckResult.java +++ b/企业级管理系统/java/AdminSys/src/main/java/com/cpic/xim/web/controllers/account/P13AccountCheckResult.java @@ -2,7 +2,7 @@ * @Author: Kane * @Date: 2022-12-15 11:17:26 * @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 * @Description: * @@ -49,6 +49,17 @@ public class P13AccountCheckResult this.staffInfo = staffInfo; } + + public String getToken() + { + return token; + } + + public void setToken( String token ) + { + this.token = token; + } + @Override public int hashCode() { @@ -88,7 +99,12 @@ public class P13AccountCheckResult @JsonProperty( "message") private String message; + // 用户的token + @JsonProperty( "token") + private String token; + // 验证成功后查询到的人员信息。 @JsonProperty( "staff_info") CpicXIMStaffInfo staffInfo; + }