| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace App\Module\File\Models;
- use UCore\ModelCore;
- /**
- * 文件 - 文件
- * field start
- * @property int $id
- * @property string $path 储存目录
- * @property string $re_type 关联类型
- * @property int $re_id 关联ID
- * @property string $o_name 原名
- * @property int $fsize 文件大小
- * @property string $type1 图片类型
- * @property \Carbon\Carbon $updated_at
- * @property \Carbon\Carbon $created_at
- * @property \Carbon\Carbon $deleted_at
- * field end
- */
- class FileFile extends \UCore\ModelCore
- {
- // attrlist start
- protected $fillable = [
- 'id',
- 'path',
- 're_type',
- 're_id',
- 'o_name',
- 'fsize',
- 'type1',
- ];
- // attrlist end
- }
|