Files
webman-buildadmin-mall/app/common/model/MallPointsLog.php
2026-07-21 18:59:45 +08:00

19 lines
368 B
PHP

<?php
declare(strict_types=1);
namespace app\common\model;
use app\common\model\traits\TimestampInteger;
use support\think\Model;
class MallPointsLog extends Model
{
use TimestampInteger;
protected string $table = 'mall_points_log';
protected string $pk = 'id';
protected bool $autoWriteTimestamp = true;
protected bool $updateTime = false;
}