- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace app\services\message;
|
|
|
|
|
|
use app\dao\message\TemplateMessageDao;
|
|
use app\services\BaseServices;
|
|
use think\annotation\Inject;
|
|
|
|
/**
|
|
* 模板消息
|
|
* Class TemplateMessageServices
|
|
* @package app\services\other
|
|
* @mixin TemplateMessageDao
|
|
*/
|
|
class TemplateMessageServices extends BaseServices
|
|
{
|
|
/**
|
|
* @var TemplateMessageDao
|
|
*/
|
|
#[Inject]
|
|
protected TemplateMessageDao $dao;
|
|
|
|
/**
|
|
* 获取模板消息列表
|
|
* @param array $where
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getTemplateList(array $where)
|
|
{
|
|
[$page, $limit] = $this->getPageValue();
|
|
$list = $this->dao->getTemplateList($where, $page, $limit);
|
|
foreach ($list as &$item) {
|
|
if ($item['content']) $item['content'] = explode("\n", $item['content']);
|
|
}
|
|
$count = $this->dao->count($where);
|
|
return compact('list', 'count');
|
|
}
|
|
|
|
/**
|
|
* 获取模板消息id
|
|
* @param string $templateId
|
|
* @param int $type
|
|
* @return mixed
|
|
*/
|
|
public function getTempId(string $templateId, int $type = 0)
|
|
{
|
|
return $this->dao->value(['type' => $type, 'tempkey' => $templateId, 'status' => 1], 'tempid');
|
|
}
|
|
}
|