This commit is contained in:
commie
2026-02-15 19:41:56 +08:00
parent 61c5192018
commit 1a7f4bc98a
68 changed files with 992 additions and 353 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
namespace support\OpenImSdk\Enum;
enum appMangerLevel : int{
use BaseEnum;
/*系统通知号;*/
case Notify=3;
/*机器人账号;*/
case Bot=4;
/**
* 获取所有状态映射数组
*/
public static function toArray(): array
{
return [
self::Notify->value => __('系统通知号'),
self::Bot->value => __('机器人账号'),
];
}
};