| 123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * 订单支付后事件
- * Created by PhpStorm.
- * Author: 芸众商城 www.yunzshop.com
- * Date: 2017/3/3
- * Time: 上午11:44
- */
- namespace app\common\events\goods;
- class StockReduceByOrderEvent extends \app\common\events\Event
- {
- protected $goods;
- protected $num;
- public function __construct($goods, $num)
- {
- $this->goods = $goods;
- $this->num = $num;
- }
- public function getGoods()
- {
- return $this->goods;
- }
- public function getNum()
- {
- return $this->num;
- }
- }
|