12345678910111213141516171819202122232425262728293031 |
- <?php
- namespace App\Http\Models;
- use Eloquent;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Database\Eloquent\Model;
- /**
- * 系统配置
- * Class Config
- *
- * @package App\Http\Models
- * @mixin Eloquent
- * @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)
- */
- class Config extends Model
- {
- public $timestamps = FALSE;
- protected $table = 'config';
- protected $primaryKey = 'id';
- }
|