Files
ProxyPanel/app/Http/Models/Config.php
兔姬桑 8ae52d8a2f 格式化
2020-08-05 03:20:33 +08:00

29 lines
699 B
PHP

<?php
namespace App\Http\Models;
use Eloquent;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
/**
* 系统配置
*
* @property int $id
* @property string $name 配置名
* @property string|null $value 配置值
* @method static Builder|Config newModelQuery()
* @method static Builder|Config newQuery()
* @method static Builder|Config query()
* @method static Builder|Config whereId($value)
* @method static Builder|Config whereName($value)
* @method static Builder|Config whereValue($value)
* @mixin Eloquent
*/
class Config extends Model {
public $timestamps = false;
protected $table = 'config';
protected $primaryKey = 'id';
}