作者 lyh

gx视频任务

... ... @@ -274,4 +274,15 @@ class Base extends Model
}, ARRAY_FILTER_USE_KEY);
}
/**
* @remark :查询一个字段返回数组
* @name :selectField
* @author :lyh
* @method :post
* @time :2024/7/15 17:11
*/
public function selectField($data,$filed){
$data = $this->filterRequestData($data);
return $this->formatQuery($data)->pluck($filed)->toArray();
}
}
... ...