|
|
<?php
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
/**
|
|
|
* App\BilibiliVideoParts
|
|
|
*
|
|
|
* @property int $id
|
|
|
* @property int $aid 视频part 关联的视频 id
|
|
|
* @property string $part part 名
|
|
|
* @property int $page 顺序值
|
|
|
* @property int $duration 时长
|
|
|
* @property int $is_downloaded 是否已下载
|
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts newModelQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts newQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts query()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts whereAid($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts whereCreatedAt($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts whereDuration($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts whereId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts whereIsDownloaded($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts wherePage($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts wherePart($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts whereUpdatedAt($value)
|
|
|
* @mixin \Eloquent
|
|
|
* @property string $title 标题
|
|
|
* @property string $to_download_path 下载路径
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts whereTitle($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\BilibiliVideoParts whereToDownloadPath($value)
|
|
|
*/
|
|
|
class BilibiliVideoParts extends Model
|
|
|
{
|
|
|
//
|
|
|
protected $guarded = [''];
|
|
|
|
|
|
}
|