| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace common\enums;
- /**
- * 畅捷通请求表请求状态
- */
- class AddonsChanjetRequestEnum extends BaseEnum
- {
- /**
- * 未请求
- */
- const NOT_REQUESTED = 0;
- /**
- * 请求成功
- */
- const REQUEST_SUCCESS = 1;
- /**
- * 请求失败
- */
- const REQUEST_ERROR = 2;
- public static function getMap(): array
- {
- return [
- self::NOT_REQUESTED => '未推送',
- self::REQUEST_SUCCESS => '推送成功',
- self::REQUEST_ERROR => '请求失败',
- ];
- }
- }
|