PreOrderDisplayEvent.php 444 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * Author: 芸众商城 www.yunzshop.com
  5. * Date: 2017/3/14
  6. * Time: 下午1:38
  7. */
  8. namespace app\common\events\order;
  9. use app\common\events\Event;
  10. class PreOrderDisplayEvent extends Event
  11. {
  12. private $_order_model;
  13. public function __construct($order_model)
  14. {
  15. $this->_order_model = $order_model;
  16. }
  17. public function getOrderModel()
  18. {
  19. return $this->_order_model;
  20. }
  21. }