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

31 lines
807 B
PHP

<?php
namespace App\Http\Models;
use Eloquent;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Carbon;
/**
* SS节点分组
*
* @property int $id
* @property string $name 分组名称
* @property Carbon|null $created_at
* @property Carbon|null $updated_at
* @method static Builder|SsGroup newModelQuery()
* @method static Builder|SsGroup newQuery()
* @method static Builder|SsGroup query()
* @method static Builder|SsGroup whereCreatedAt($value)
* @method static Builder|SsGroup whereId($value)
* @method static Builder|SsGroup whereName($value)
* @method static Builder|SsGroup whereUpdatedAt($value)
* @mixin Eloquent
*/
class SsGroup extends Model {
protected $table = 'ss_group';
protected $primaryKey = 'id';
}