| 1234567891011121314151617181920212223242526 |
- <?php
- namespace app\common\events\goods;
- use app\common\events\Event;
- class GoodsCreateEvent extends Event
- {
- /**
- * @var
- */
- private $goods; //商品
- /**
- * @param $goods
- */
- function __construct($goods)
- {
- $this->goods = $goods;
- }
- public function getGoods()
- {
- return $this->goods;
- }
- }
|