|
|
<?php
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
/**
|
|
|
* App\Acfun
|
|
|
*
|
|
|
* @property int $id
|
|
|
* @property int $media_id 收藏夹识别 id
|
|
|
* @property string $title 收藏夹名称
|
|
|
* @property int $video_id 视频 id
|
|
|
* @property int $is_available 是否有效,0:有效,1:失效
|
|
|
* @property int $is_downloaded 是否已下载, 0: 未下载, 1:已下载
|
|
|
* @property \Illuminate\Support\Carbon|null $created_at
|
|
|
* @property \Illuminate\Support\Carbon|null $updated_at
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun newModelQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun newQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun query()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun whereCreatedAt($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun whereId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun whereIsAvailable($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun whereIsDownloaded($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun whereMediaId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun whereTitle($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun whereUpdatedAt($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\Acfun whereVideoId($value)
|
|
|
* @mixin \Eloquent
|
|
|
*/
|
|
|
class Acfun extends Model
|
|
|
{
|
|
|
//
|
|
|
}
|