Login to add login status judgment

This commit is contained in:
hrxiang
2023-07-03 15:04:30 +08:00
parent 79cbae718c
commit 5bdb9879a7
7 changed files with 53 additions and 40 deletions

View File

@@ -0,0 +1,5 @@
class LoginStatus {
static const logout = 1;
static const logging = 2;
static const logged = 3;
}