You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.9 KiB
83 lines
1.9 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Niucloud-admin 企业快速开发的多应用管理平台
|
|
// +----------------------------------------------------------------------
|
|
// | 官方网址:https://www.niucloud.com
|
|
// +----------------------------------------------------------------------
|
|
// | niucloud团队 版权所有 开源版本可自由商用
|
|
// +----------------------------------------------------------------------
|
|
// | Author: Niucloud Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace core\sms;
|
|
|
|
use core\loader\Storage;
|
|
|
|
/**
|
|
* Class BaseSms
|
|
* @package
|
|
*/
|
|
abstract class BaseSms extends Storage
|
|
{
|
|
/**
|
|
* 初始化
|
|
* @param array $config
|
|
* @return void
|
|
*/
|
|
protected function initialize(array $config = [])
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* 发送短信
|
|
* @param string $mobile
|
|
* @param string $template_id
|
|
* @param array $data
|
|
* @return mixed
|
|
*/
|
|
abstract public function send(string $mobile, string $template_id, array $data);
|
|
|
|
/**
|
|
* 编辑签名
|
|
* @return mixed
|
|
*/
|
|
abstract public function modify(string $sign, string $mobile, string $code);
|
|
|
|
/**
|
|
* 短信模板
|
|
* @param int $page
|
|
* @param int $limit
|
|
* @param int $type
|
|
* @return mixed
|
|
*/
|
|
abstract public function template(int $page, int $limit, int $type);
|
|
|
|
|
|
/**
|
|
* 申请短信
|
|
* @param string $title
|
|
* @param string $content
|
|
* @param int $type
|
|
* @return mixed
|
|
*/
|
|
abstract public function apply(string $title, string $content, int $type);
|
|
|
|
/**
|
|
* 模板列表
|
|
* @param int $type
|
|
* @param int $page
|
|
* @param int $limit
|
|
* @return mixed
|
|
*/
|
|
abstract public function localTemplate(int $type, int $page, int $limit);
|
|
|
|
/**
|
|
* 记录
|
|
* @param $id
|
|
* @return mixed
|
|
*/
|
|
abstract public function record($id);
|
|
|
|
|
|
}
|
|
|