enum LoginStatus { LOGIN(1, '已登录'), NOT_LOGIN(2, '未登录'); final int code; final String description; const LoginStatus(this.code, this.description); }