Files
webman-buildadmin-mall/app/common/model/UserScoreLog.php
2026-03-18 17:19:03 +08:00

17 lines
340 B
PHP

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