2025-03-12 10:47:34 +08:00

117 lines
3.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
namespace app\dao\caseinfo;
use app\dao\BaseDao;
use app\model\caseinfo\Caseinfo;
use think\exception\ValidateException;
/**
* 文章dao
* Class CaseDao
* @package app\dao\article
*/
class CaseDao extends BaseDao
{
/**
* 设置模型
* @return string
*/
protected function setModel(): string
{
return Caseinfo::class;
}
/**
* 文章搜索
* @param array $where
* @param bool $search
* @return \crmeb\basic\BaseModel
* @throws \ReflectionException
* @author 吴汐
* @email 442384644@qq.com
* @date 2023/03/20
*/
public function search(array $where = [], bool $search = false)
{
return parent::search($where, $search)->when(isset($where['ids']) && count($where['ids']), function ($query) use ($where) {
$query->whereNotIn('id', $where['ids']);
});
}
/**
* 获取文章列表
* @param array $where
* @param int $page
* @param int $limit
* @return mixed
*/
public function getList(array $where, int $page, int $limit)
{
return $this->search($where)->with(['content', 'storeInfo', 'cateName'])->page($page, $limit)->order('sort desc,id desc')->select()->toArray();
}
/**
* 获取一条数据
* @param $id
* @return mixed
*/
public function read($id)
{
$data = $this->search()->with(['content', 'storeInfo', 'cateName'])->find($id);
if (!$data) throw new ValidateException('文章不存在');
$data['store_info'] = $data['storeInfo'];
return $data;
}
/**
* @param array $where
* @param int $page
* @param int $limit
* @param string $field
* @return array
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function cidByArticleList(array $where, int $page, int $limit, string $field = '*')
{
return $this->search(['status' => 1, 'hide' => 0])
->when(isset($where['cid']) && $where['cid'], function ($query) use ($where) {
$query->where('cid', $where['cid']);
})->when(isset($where['is_hot']) && $where['is_hot'], function ($query) use ($where) {
$query->where('is_hot', $where['is_hot']);
})->when(isset($where['is_banner']) && $where['is_banner'], function ($query) use ($where) {
$query->where('is_banner', $where['is_banner']);
})->when($page != 0, function ($query) use ($page, $limit) {
$query->page($page, $limit);
})->order('add_time desc')->field($field)->select()->toArray();
}
/**新闻分类下的文章
* @param $new_id
* @return mixed
*/
public function articleLists($new_id)
{
return $this->getModel()->where('hide', 0)->where('id', 'in', $new_id)->select();
}
/**图文详情
* @param $new_id
* @return mixed
*/
public function articleContentList($new_id)
{
return $this->getModel()->where('hide', 0)->where('id', 'in', $new_id)->with('content')->select();
}
}