WechatVideoShopLevelEvent.php 545 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace addons\WechatVideoShop\common\event;
  3. use addons\WechatVideoShop\common\enums\WechatVideoShopEnums;
  4. use addons\WechatVideoShop\common\listeners\WechatVideoShopLevelListener;
  5. use common\components\BaseEvent;
  6. class WechatVideoShopLevelEvent extends BaseEvent
  7. {
  8. public $name = WechatVideoShopEnums::WECHAT_VIDEO_SHOP_LEVEL;
  9. public $mall_id = 0;
  10. public $level;
  11. public $id;
  12. public $level_name;
  13. public $type;
  14. public $status;
  15. public $listeners = [
  16. WechatVideoShopLevelListener::class
  17. ];
  18. }