You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
2.0 KiB

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
/**
* App\AcfunVideo
*
* @property int $id
* @property int $content_id A站 video 的 id
* @property string $title 视频标题
* @property int $from_type 来源类型,1:收藏夹,2:up,3:共有
* @property string $from_collection_name 来源的收藏夹
* @property string $from_up_name 来源的 up 名字
* @property int $is_download 是否要下载
* @property int $is_downloaded 是否已下载
* @property int $total_parts 总的分 P 数
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereContentId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereFromCollectionName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereFromType($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereFromUpName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereIsDownload($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereIsDownloaded($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereTitle($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereTotalParts($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunVideo whereUpdatedAt($value)
* @mixin \Eloquent
*/
class AcfunVideo extends Model
{
//
protected $guarded = [''];
}