Files
ProxyPanel/app/Models/Label.php

26 lines
614 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Model;
/**
* 标签
*
* @property int $id
* @property string $name 名称
* @property int $sort 排序值
* @method static Builder|Label newModelQuery()
* @method static Builder|Label newQuery()
* @method static Builder|Label query()
* @method static Builder|Label whereId($value)
* @method static Builder|Label whereName($value)
* @method static Builder|Label whereSort($value)
* @mixin \Eloquent
*/
class Label extends Model {
public $timestamps = false;
protected $table = 'label';
}