算力扣费及列表接口

This commit is contained in:
wong
2025-09-19 16:51:03 +08:00
parent 9c1cfda40b
commit ce6e752905
2 changed files with 195 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?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';
}