mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-12 19:12:49 +00:00
25 lines
423 B
PHP
25 lines
423 B
PHP
<?php
|
|
/**
|
|
* Created by CRMEB.
|
|
* Copyright (c) 2017~2019 http://www.crmeb.com All rights reserved.
|
|
* Author: liaofei <136327134@qq.com>
|
|
* Date: 2019/4/3 16:36
|
|
*/
|
|
|
|
namespace app\core\util;
|
|
|
|
use app\core\traits\LogicTrait;
|
|
|
|
/** 模版消息类
|
|
* Class Template
|
|
* @package app\core\util
|
|
*/
|
|
class Template
|
|
{
|
|
use LogicTrait;
|
|
|
|
protected $providers=[
|
|
'routine_two'=>ProgramTemplateService::class,
|
|
];
|
|
|
|
} |