修复抽奖配置丢失

This commit is contained in:
lingling 2025-02-26 22:06:40 +08:00
parent ba4b085462
commit e68d736d92
1 changed files with 25 additions and 0 deletions

25
app/model/Reward.php Normal file
View File

@ -0,0 +1,25 @@
<?php
namespace app\model;
use support\Model;
class Reward extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'rewards';
/**
* The primary key associated with the table.
*
* @var string
*/
protected $primaryKey = 'id';
public $timestamps = false;
}