You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
246 B
8 lines
246 B
<?php
|
|
namespace app\model;
|
|
class UserChatGroupModel extends BaseModel
|
|
{
|
|
const USER_CHAT_GROUP_REMARK_ADMIN_INIT = 'admin_init'; //创建管理端账号时,初始化创建的聊天群组的标识
|
|
|
|
protected $name = 'user_chat_group';
|
|
}
|