10 lines
216 B
PHP
10 lines
216 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace common\enums;
|
||
|
|
|
||
|
|
class ImMessageTypeEnum extends BaseEnum
|
||
|
|
{
|
||
|
|
const COMMON = 'common'; //普通消息
|
||
|
|
const NOTICE = 'notice'; //通知类消息
|
||
|
|
const EVENT = 'event';//事件类消息
|
||
|
|
}
|