34 lines
672 B
PHP
34 lines
672 B
PHP
<?php
|
|
declare (strict_types = 1);
|
|
|
|
namespace app\common\model;
|
|
|
|
use think\Model;
|
|
|
|
/**
|
|
* 视频上传基础模型
|
|
* @mixin \think\Model
|
|
*/
|
|
class SysVideoBaseModel extends Model
|
|
{
|
|
// 表名
|
|
protected $name = 'sys_video';
|
|
|
|
// 主键
|
|
protected $pk = 'id';
|
|
|
|
// 字段信息
|
|
protected $schema = [
|
|
'id' => 'int',
|
|
'language_id' => 'int',
|
|
'module' => 'string',
|
|
'video_path' => 'string',
|
|
'video_size' => 'int',
|
|
'video_type' => 'string',
|
|
'video_md5' => 'string',
|
|
'video_sha1' => 'string',
|
|
'created_at' => 'datetime',
|
|
'deleted_at' => 'datetime',
|
|
];
|
|
}
|