Files
dafuweng-buildadmin/dafuweng-webman/app/common/model/UserScoreLog.php
2026-03-07 19:42:22 +08:00

14 lines
267 B
PHP

<?php
namespace app\common\model;
use support\think\Model;
class UserScoreLog extends Model
{
protected string $table = 'user_score_log';
protected string $pk = 'id';
protected bool $autoWriteTimestamp = true;
protected bool $updateTime = false;
}