| 12345678910111213141516171819202122232425 |
- <?php
- namespace addons\WechatVideoShop\common\logic\traits;
- trait WeChatCallbackShopCloseTrait
- {
- /**
- * 店铺关闭
- * @return void
- * {
- "ToUserName": "gh_*",
- "FromUserName": "OPENID",
- "CreateTime": 1662480000,
- "MsgType": "event",
- "Event": "channels_ec_close_store",
- "bind_appid": "APPID",
- "close_timestamp": "1662480000"
- }
- */
- public function channels_ec_close_store(array $params)
- {
- $this->init($params);
- }
- }
|