Pu Zhibing
7 天以前 4c99ee7028c3fe58a2cd4b8273b22c75c45574fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package com.stylefeng.guns.modular.system.util.Tingg.model;
 
/**
 * @author zhibing.pu
 * @date 2023/3/20 16:52
 */
public class AuthStatus {
    /**
     * 认证状态码
     * 131 客户端认证成功
     * 132 客户端认证失败
     * 174 具有匹配的适当描述的通用故障状态代码
     */
    private Integer authStatusCode;
    /**
     * 账号认证说明
     */
    private String authStatusDescription;
 
    public Integer getAuthStatusCode() {
        return authStatusCode;
    }
 
    public void setAuthStatusCode(Integer authStatusCode) {
        this.authStatusCode = authStatusCode;
    }
 
    public String getAuthStatusDescription() {
        return authStatusDescription;
    }
 
    public void setAuthStatusDescription(String authStatusDescription) {
        this.authStatusDescription = authStatusDescription;
    }
}