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

17 lines
317 B
PHP

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