15 lines
288 B
PHP
15 lines
288 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace app\common\model;
|
|
|
|
/**
|
|
* 企业微信 员工×客户 会话索引(用于 admin 聊天页左侧会话列表)
|
|
*/
|
|
class QywxMsgSession extends BaseModel
|
|
{
|
|
protected $name = 'qywx_msg_session';
|
|
protected $autoWriteTimestamp = 'int';
|
|
}
|