26 lines
386 B
PHP
26 lines
386 B
PHP
<?php
|
|
/**
|
|
* Author:
|
|
* Date: 2018/9/20
|
|
* Time: 上午10:31
|
|
*/
|
|
|
|
namespace app\common\events\order;
|
|
|
|
|
|
use app\common\events\Event;
|
|
|
|
abstract class OrderPluginBonusEvent extends Event
|
|
{
|
|
protected $data;
|
|
|
|
public function __construct($pluginBonusModel)
|
|
{
|
|
$this->data = $pluginBonusModel;
|
|
}
|
|
|
|
public function getData()
|
|
{
|
|
return $this->data;
|
|
}
|
|
} |