Files
ProxyPanel/app/Models/Article.php
兔姬桑 265fced5e2 WebApi Bate & more
1. 完善 laravel5.8框架文件;
2. 按照VentPanel开发的WebApi Bate;
3. bug修复与优化
4. WebApi 授权相关界面;
2020-08-05 03:20:39 +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 string $title 标题
* @property string|null $author 作者
* @property string|null $summary 简介
* @property string|null $logo LOGO
* @property string|null $content 内容
* @property int|null $type 类型1-文章、2-站内公告、3-站外公告
* @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);
}
}