RepaymentEvent.php 422 B

1234567891011121314151617181920
  1. <?php
  2. /*
  3. * @Descripttion:
  4. * @version:
  5. * @Author: ewgof
  6. * @Date: 2022-05-07 17:19:34
  7. * @LastEditors: ewgof
  8. * @LastEditTime: 2022-05-07 17:19:34
  9. */
  10. namespace addons\Store\common\events\order;
  11. use common\components\BaseEvent;
  12. use common\enums\EventNameEnum;
  13. class RepaymentEvent extends BaseEvent {
  14. public $mall_id = 0;
  15. public $name = EventNameEnum::STORE_REPAYMENT;
  16. public $listeners = array(
  17. );
  18. }