41 lines
842 B
PHP
41 lines
842 B
PHP
<?php
|
|
|
|
|
|
namespace app\common\model\article;
|
|
|
|
use app\common\enum\YesNoEnum;
|
|
use app\common\model\BaseModel;
|
|
use think\model\concern\SoftDelete;
|
|
|
|
/**
|
|
* 资讯收藏
|
|
* Class ArticleCollect
|
|
* @package app\common\model\article
|
|
*/
|
|
class ArticleCollect extends BaseModel
|
|
{
|
|
use SoftDelete;
|
|
|
|
protected $deleteTime = 'delete_time';
|
|
|
|
|
|
/**
|
|
* @notes 是否已收藏文章
|
|
* @param $userId
|
|
* @param $articleId
|
|
* @return bool (true=已收藏, false=未收藏)
|
|
* @author 段誉
|
|
* @date 2022/10/20 15:13
|
|
*/
|
|
public static function isCollectArticle($userId, $articleId)
|
|
{
|
|
$collect = ArticleCollect::where([
|
|
'user_id' => $userId,
|
|
'article_id' => $articleId,
|
|
'status' => YesNoEnum::YES
|
|
])->findOrEmpty();
|
|
|
|
return !$collect->isEmpty();
|
|
}
|
|
}
|