| 1234567891011121314151617181920212223 |
- <?php
- namespace addons\WechatVideoShop\common\event;
- use addons\WechatVideoShop\common\enums\WechatVideoShopEnums;
- use addons\WechatVideoShop\common\listeners\WechatVideoShopLevelListener;
- use common\components\BaseEvent;
- class WechatVideoShopLevelEvent extends BaseEvent
- {
- public $name = WechatVideoShopEnums::WECHAT_VIDEO_SHOP_LEVEL;
- public $mall_id = 0;
- public $level;
- public $id;
- public $level_name;
- public $type;
- public $status;
- public $listeners = [
- WechatVideoShopLevelListener::class
- ];
- }
|