27 lines
429 B
PHP
27 lines
429 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: yunzhong
|
|
* Date: 2019/7/15
|
|
* Time: 16:50
|
|
*/
|
|
|
|
namespace app\common\events\finance;
|
|
|
|
|
|
use app\common\events\Event;
|
|
|
|
class BalanceRechargedEvent extends Event
|
|
{
|
|
public $rechargeModel;
|
|
|
|
public function __construct($rechargeModel)
|
|
{
|
|
$this->rechargeModel = $rechargeModel;
|
|
}
|
|
|
|
public function getRechargeModel()
|
|
{
|
|
return $this->rechargeModel;
|
|
}
|
|
} |