Files
cunkebao_v3/Server/application/chukebao/model/TokensCompany.php
2025-09-30 10:36:51 +08:00

16 lines
275 B
PHP

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