24 lines
500 B
PHP
24 lines
500 B
PHP
|
|
<?php
|
||
|
|
namespace app\model\Openim;
|
||
|
|
|
||
|
|
use think\Model;
|
||
|
|
/**
|
||
|
|
* @property string $conversation_id
|
||
|
|
* @property int $max_seq
|
||
|
|
* @property int $min_seq
|
||
|
|
*/
|
||
|
|
|
||
|
|
class Seq extends \app\model\Base
|
||
|
|
{
|
||
|
|
protected $table = 'seq';
|
||
|
|
protected $schema = [
|
||
|
|
'conversation_id' => 'string',
|
||
|
|
'max_seq' => 'int',
|
||
|
|
'min_seq' => 'int',
|
||
|
|
];
|
||
|
|
protected function getOptions(): array{
|
||
|
|
return array_merge(parent::getOptions(),[
|
||
|
|
'connection' => 'immongodb',
|
||
|
|
]);
|
||
|
|
}
|
||
|
|
}
|