| 123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace addons\WechatVideoShop\common\logic\traits;
- use addons\WechatVideoShop\common\enums\WechatVideoShopCateAuditStatusEnums;
- use addons\WechatVideoShop\common\service\CateService;
- trait WeChatCallbackCateTrait
- {
- /**
- * [
- * 'ToUserName' => 'gh_54b602890f7c'
- * 'FromUserName' => 'orkX54g5UfZdHIeNrbYK8OAp6uJ4'
- * 'CreateTime' => 1686913689
- * 'MsgType' => 'event'
- * 'Event' => 'product_category_audit'
- * 'ProductCategoryAudit' => [
- * 'audit_id' => 4477258124
- * 'status' => 3
- * ]
- * 'wechat_appid' => 'wx79f550219d78c487'
- * ]
- * 类目审核
- * @return void
- * @throws \Exception
- */
- public function product_category_audit(array $params)
- {
- $this->init($params);
- (new CateService())->auditResult($this->data);
- }
- }
|