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.
 
 
 

34 lines
1.5 KiB

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
/**
* App\AcfunUpVideo
*
* @property int $id
* @property int $user_id up的唯一识别 id
* @property string $up_name up 名
* @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\AcfunUpVideo newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo query()
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo whereIsAvailable($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo whereIsDownloaded($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo whereUpName($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo whereUpdatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo whereUserId($value)
* @method static \Illuminate\Database\Eloquent\Builder|\App\AcfunUpVideo whereVideoId($value)
* @mixin \Eloquent
*/
class AcfunUpVideo extends Model
{
//
}