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;
|
}
|
}
|