Commit cf68b118 by xmy

feat:系统通知

parent 7c98ac07
......@@ -5,33 +5,34 @@
* Date: 2018/7/5
* Time: 13:15
*/
namespace Hdll\Services\Notice\Enum;
class NoticeEnum
{
//商家小程序发送
const TYPE_MINI_BACKEND_SEND= 100;
//腾讯sms发送
const TYPE_TENCENT_SMS = 150;
//买家小程序消息推送
const TYPE_MINI_FRONTEND_SEND= 101;
const TYPE_MP_SEND= 102;
//商家小程序发送
const TYPE_MINI_BACKEND_SEND = 100;
const SEND_TYPES = [
self::TYPE_MINI_BACKEND_SEND,
self::TYPE_TENCENT_SMS,
self::TYPE_MINI_FRONTEND_SEND,
self::TYPE_MP_SEND,
];
//腾讯sms发送
const TYPE_TENCENT_SMS = 150;
//买家小程序消息推送
const TYPE_MINI_FRONTEND_SEND = 101;
//公众号发送
const TYPE_MP_SEND = 102;
//系统消息发送
const TYPE_SYSTEM_SEND = 103;
const SEND_TYPES = [
self::TYPE_MINI_BACKEND_SEND,
self::TYPE_TENCENT_SMS,
self::TYPE_MINI_FRONTEND_SEND,
self::TYPE_MP_SEND,
self::TYPE_SYSTEM_SEND,
];
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment