| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /*
- * 商品修改
- * Created by PhpStorm.
- * User: yunzhong
- * Date: 2019/12/6
- * Time: 9:50
- */
- namespace app\common\events\goods;
- use app\common\events\Event;
- class GoodsChangeEvent extends Event
- {
- /**
- * @var
- */
- private $goods; //商品
- /**
- * GoodsLimitBuyCloseEvent constructor.
- * @param $goods
- */
- function __construct($goods)
- {
- $this->goods = $goods;
- }
- public function getGoods()
- {
- return $this->goods;
- }
- }
|