| 1234567891011121314151617181920 |
- <?php
- /*
- * @Descripttion:
- * @version:
- * @Author: ewgof
- * @Date: 2022-05-07 17:19:34
- * @LastEditors: ewgof
- * @LastEditTime: 2022-05-07 17:19:34
- */
- namespace addons\Store\common\events\order;
- use common\components\BaseEvent;
- use common\enums\EventNameEnum;
- class RepaymentEvent extends BaseEvent {
- public $mall_id = 0;
- public $name = EventNameEnum::STORE_REPAYMENT;
- public $listeners = array(
- );
- }
|