Files
ProxyPanel/app/Models/Article.php
兔姬桑 71828a0ac5 数据库改版 +Rule 编辑相关 (Rule未实际应用)
1. 规范化数据库数据;
2. 添加Rule相关页面
为未来加入web api做准备
2020-08-05 03:20:33 +08:00

55 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Database\Query\Builder;
/**
* 文章
*
* @property int $id
* @property int|null $type 类型1-文章、2-站内公告、3-站外公告
* @property string $title 标题
* @property string|null $author 作者
* @property string|null $summary 简介
* @property string|null $logo LOGO
* @property string|null $content 内容
* @property int $sort 排序
* @property \Illuminate\Support\Carbon|null $created_at 创建时间
* @property \Illuminate\Support\Carbon|null $updated_at 最后更新时间
* @property \Illuminate\Support\Carbon|null $deleted_at 删除时间
* @method static \Illuminate\Database\Eloquent\Builder|Article newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|Article newQuery()
* @method static Builder|Article onlyTrashed()
* @method static \Illuminate\Database\Eloquent\Builder|Article query()
* @method static \Illuminate\Database\Eloquent\Builder|Article type($type)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereAuthor($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereContent($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereDeletedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereLogo($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereSort($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereSummary($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereType($value)
* @method static \Illuminate\Database\Eloquent\Builder|Article whereUpdatedAt($value)
* @method static Builder|Article withTrashed()
* @method static Builder|Article withoutTrashed()
* @mixin \Eloquent
*/
class Article extends Model {
use SoftDeletes;
protected $table = 'article';
protected $primaryKey = 'id';
protected $dates = ['deleted_at'];
// 筛选类型
function scopeType($query, $type) {
return $query->whereType($type);
}
}