123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Modules\WechatPlatform\Services;
- class WechatPlatformConstService
- {
- /**
- * 客服消息状态:待发送
- */
- public const KF_MESSAGE_STATUS_PRE_SEND=1;
- /**
- * 客服消息状态:发送中
- */
- public const KF_MESSAGE_STATUS_SENDING=2;
- /**
- * 客服消息状态:发送完成
- */
- public const KF_MESSAGE_STATUS_FINISH=3;
- /**
- * 客服消息状态:已停止
- */
- public const KF_MESSAGE_STATUS_STOP=4;
- /**
- * 客服消息状态-映射表
- */
- public const KF_MESSAGE_STATUS_MAPPER = [
- '1' => '待发送', '2' => '发送中', '3' => '发送完毕', '4' => '已停止'
- ];
- /**
- * 客服消息类型:纯文本
- */
- public const KF_MESSAGE_TYPE_MAPPER = [
- '1' => '纯文本'
- ];
- }
|