mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 03:32:47 +08:00
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Repos;
|
|
|
|
use App\Models\CourseCategory as CourseCategoryModel;
|
|
use Phalcon\Mvc\Model;
|
|
use Phalcon\Mvc\Model\Resultset;
|
|
use Phalcon\Mvc\Model\ResultsetInterface;
|
|
|
|
class CourseCategory extends Repository
|
|
{
|
|
|
|
/**
|
|
* @param int $courseId
|
|
* @param int $categoryId
|
|
* @return CourseCategoryModel|Model|bool
|
|
*/
|
|
public function findCourseCategory($courseId, $categoryId)
|
|
{
|
|
return CourseCategoryModel::findFirst([
|
|
'conditions' => 'course_id = :course_id: AND category_id = :category_id:',
|
|
'bind' => ['course_id' => $courseId, 'category_id' => $categoryId],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @param array $categoryIds
|
|
* @return ResultsetInterface|Resultset|CourseCategoryModel[]
|
|
*/
|
|
public function findByCategoryIds($categoryIds)
|
|
{
|
|
return CourseCategoryModel::query()
|
|
->inWhere('category_id', $categoryIds)
|
|
->execute();
|
|
}
|
|
|
|
/**
|
|
* @param array $courseIds
|
|
* @return ResultsetInterface|Resultset|CourseCategoryModel[]
|
|
*/
|
|
public function findByCourseIds($courseIds)
|
|
{
|
|
return CourseCategoryModel::query()
|
|
->inWhere('course_id', $courseIds)
|
|
->execute();
|
|
}
|
|
|
|
}
|