12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- namespace app\common\enum;
-
-
-
- class CommunityCommentEnum
- {
- const STATUS_WAIT = 0;
- const STATUS_SUCCESS = 1;
- const STATUS_REFUSE = 2;
-
-
-
-
- public static function getStatusDesc($status = true)
- {
- $desc = [
- self::STATUS_WAIT => '审核中',
- self::STATUS_SUCCESS => '审核通过',
- self::STATUS_REFUSE => '审核拒绝',
- ];
- if (true === $status) {
- return $desc;
- }
- return $desc[$status];
- }
-
- }
|