27 lines
598 B
PHP
27 lines
598 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
namespace app\common\model;
|
||
|
||
use support\think\Model;
|
||
|
||
/**
|
||
* PlayX 会话缓存
|
||
*/
|
||
class MallPlayxSession extends Model
|
||
{
|
||
protected string $name = 'mall_playx_session';
|
||
|
||
protected bool $autoWriteTimestamp = true;
|
||
|
||
protected array $type = [
|
||
// 这里需要显式声明 create_time / update_time 为 integer,
|
||
// 否则 ThinkORM 可能把 bigint 时间戳当成字符串,导致写入时出现 now 字符串问题。
|
||
'create_time' => 'integer',
|
||
'update_time' => 'integer',
|
||
'expire_time' => 'integer',
|
||
];
|
||
}
|
||
|