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.
11 lines
293 B
11 lines
293 B
<?php
|
|
namespace app\model;
|
|
class VideoOnDemandModel extends BaseModel
|
|
{
|
|
protected $name = 'video_on_demand';
|
|
|
|
// 定义字段类型自动转换
|
|
protected $type = [
|
|
'video_collection' => 'json', // 存储视频合集,格式 [{"subtitle":"", "video_url":""},{}]
|
|
];
|
|
}
|