Files
huangjingfen/pro_v3.5.1/app/services/message/TemplateMessageServices.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

62 lines
2.0 KiB
PHP
Raw Permalink 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~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
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');
}
}