Files
cunkebao_v3/Server/application/chukebao/model/TokensRecord.php
2025-09-29 17:37:21 +08:00

16 lines
273 B
PHP

<?php
namespace app\chukebao\model;
use think\Model;
class TokensRecord extends Model
{
protected $pk = 'id';
protected $name = 'tokens_record';
// 自动写入时间戳
protected $autoWriteTimestamp = true;
protected $createTime = 'createTime';
}