Files
huangjingfen/pro_v3.5.1/app/dao/message/TemplateMessageDao.php
panchengyong c1e74d8e68 chore(php): 统一 ScottPan 文件头与注释域名替换
- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明

Made-with: Cursor
2026-03-29 11:22:58 +08:00

68 lines
1.9 KiB
PHP

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\dao\message;
use app\dao\BaseDao;
use app\model\message\TemplateMessage;
/**
* 模板消息
* Class TemplateMessageDao
* @package app\dao\message
*/
class TemplateMessageDao extends BaseDao
{
/**
* 设置模型
* @return string
*/
protected function setModel(): string
{
return TemplateMessage::class;
}
/**
* 获取一条数据
* @param array $where
* @param string $filed
* @param bool $is_search
* @return array|\think\Model|null
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getTemplateOne(array $where, string $filed = '*', bool $is_search = true)
{
if ($is_search) {
return $this->search($where)->field($filed)->find();
} else {
return $this->getModel()->where($where)->find();
}
}
/**
* 获取模板消息列表
* @param array $where
* @param int $page
* @param int $limit
* @return \think\Collection
* @throws \think\db\exception\DataNotFoundException
* @throws \think\db\exception\DbException
* @throws \think\db\exception\ModelNotFoundException
*/
public function getTemplateList(array $where, int $page, int $limit)
{
return $this->getModel()->when(isset($where['name']) && $where['name'] != '', function ($query) use ($where) {
$query->where('name', 'LIKE', "%$where[name]%");
})->when(isset($where['status']) && $where['status'] != '', function ($query) use ($where) {
$query->where('status', $where['status']);
})->where('type', $where['type'])->page($page, $limit)->select()->toArray();
}
}