From 4e069b58a1d761e211d00d0da3cf462e67b24985 Mon Sep 17 00:00:00 2001 From: liapples Date: Thu, 12 Aug 2021 19:56:22 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=94=A8=E6=88=B7=E7=8A=B6?= =?UTF-8?q?=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Common/UserStatus.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 app/Common/UserStatus.php diff --git a/app/Common/UserStatus.php b/app/Common/UserStatus.php new file mode 100644 index 0000000..7a39df0 --- /dev/null +++ b/app/Common/UserStatus.php @@ -0,0 +1,26 @@ + '正常', + self::UNAUDITED => '未审核', + self::REFUSE => '拒绝', + self::DISABLED => '禁用', + ]; + } +}