package com.hdl.photovoltaic.enums; /** * 退出登录类型 */ public enum LogoutType { /** * 正常退出(一般指用户退出登录,密码更新) */ NormalLogout(0), /** * 极光主动通知退出 */ JpushLogout(1), /** * uni主动通知退出 */ UniLogout(2), /** * 服务器切换退出 */ ServerSwitchingLogout(3), /** * 异常情况(原生和小程通讯断开) */ AbnormalLogout(-1); private final int value; LogoutType(int value) { this.value = value; } public int getValue() { return value; } }