|
|
<?php
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
/**
|
|
|
* App\XiuGirl
|
|
|
*
|
|
|
* @property int $id
|
|
|
* @property int $user_id 用户 id
|
|
|
* @property int $album_id 相册 id
|
|
|
* @property int $image_name 图片名
|
|
|
* @property int $file_size 文件大小
|
|
|
* @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\XiuGirl newModelQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl newQuery()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl query()
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl whereAlbumId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl whereCreatedAt($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl whereFileSize($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl whereId($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl whereImageName($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl whereIsDownloaded($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl whereUpdatedAt($value)
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|\App\XiuGirl whereUserId($value)
|
|
|
* @mixin \Eloquent
|
|
|
*/
|
|
|
class XiuGirl extends Model
|
|
|
{
|
|
|
//
|
|
|
}
|