53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
<?php
|
|
declare (strict_types = 1);
|
|
|
|
namespace app\admin\model\v1;
|
|
|
|
use app\common\model\VideoBaseModel;
|
|
|
|
/**
|
|
* 视频信息模型
|
|
* @mixin \think\Model
|
|
*/
|
|
class VideoModel extends VideoBaseModel
|
|
{
|
|
// 关联分类
|
|
public function category()
|
|
{
|
|
return $this->belongsTo(VideoCategoryModel::class, 'category_id', 'id');
|
|
}
|
|
|
|
// 名称搜索器
|
|
public function searchNameAttr($query, $value, $data)
|
|
{
|
|
if (empty($value)) {
|
|
return;
|
|
}
|
|
$query->where('name', 'like', '%' . $value . '%');
|
|
}
|
|
|
|
// 搜索发布时间
|
|
public function searchCreatedAtAttr($query, $value, $data)
|
|
{
|
|
if (empty($value)) {
|
|
return;
|
|
}
|
|
if (is_array($value)) {
|
|
if (count($value) == 2) {
|
|
$query->whereBetweenTime('created_at', $value[0], $value[1]);
|
|
} else {
|
|
$query->whereTime('created_at', '>=', $value[0]);
|
|
}
|
|
}
|
|
}
|
|
|
|
// 分类查询
|
|
public function scopeCategoryId($query, $value)
|
|
{
|
|
if (empty($value)) {
|
|
return;
|
|
}
|
|
$query->where('category_id', '=', $value);
|
|
}
|
|
}
|