Files
commie d75fea32f7 12
2026-02-27 13:53:53 +08:00

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',
]);
}
}