123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace App\Service\WechatPlatform;
- 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' => '纯文本'
- ];
- }
|