Files
webman-buildadmin/app/common/model/UserScoreLog.php
2026-03-18 15:54:43 +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;
}