20 lines
315 B
PHP
20 lines
315 B
PHP
<?php
|
|
|
|
namespace app\store\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* 算力明细记录模型
|
|
*/
|
|
class TokensRecordModel extends Model
|
|
{
|
|
protected $name = 'tokens_record';
|
|
protected $pk = 'id';
|
|
|
|
// 自动写入时间戳
|
|
protected $autoWriteTimestamp = true;
|
|
protected $createTime = 'createTime';
|
|
}
|
|
|