PointChangeCreatingEvent.php 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /******************************************************************************************************************
  3. * Author: king -- LiBaoJia
  4. * Date: 11/10/21 9:50 AM
  5. * Email: livsyitian@163.com
  6. * QQ: 995265288
  7. * IDE: PhpStorm
  8. * User: www.yunzshop.com www.yunzshop.com
  9. * Company: 广州市芸众信息科技有限公司
  10. * Profile: 专注移动电子商务生态系统打造,拥有芸众社交电商系统、区块链数字资产管理系统、供应链管理系统、电子合同等产品/服务
  11. ******************************************************************************************************************/
  12. namespace app\common\events\finance;
  13. use app\common\events\Event;
  14. class PointChangeCreatingEvent extends Event
  15. {
  16. /**
  17. * @var array
  18. */
  19. public $changeData;
  20. public $is_change;
  21. public function __construct($changeData)
  22. {
  23. $this->changeData = $changeData;
  24. $this->is_change = 1;
  25. }
  26. public function changeData()
  27. {
  28. return $this->changeData;
  29. }
  30. }