Delivery.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2024 https://www.yiovo.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
  8. // +----------------------------------------------------------------------
  9. // | Author: 萤火科技 <admin@yiovo.com>
  10. // +----------------------------------------------------------------------
  11. declare (strict_types=1);
  12. namespace app\common\service\message\order;
  13. use app\common\service\message\Basics;
  14. use app\common\model\store\Setting as SettingModel;
  15. /**
  16. * 消息通知服务 [订单发货]
  17. * Class Delivery
  18. * @package app\common\service\message\order
  19. */
  20. class Delivery extends Basics
  21. {
  22. /**
  23. * 参数列表
  24. * @var array
  25. */
  26. protected $param = [
  27. 'order' => [],
  28. ];
  29. /**
  30. * 发送消息通知
  31. * @param array $param
  32. * @return mixed|void
  33. * @throws \think\Exception
  34. */
  35. public function send(array $param)
  36. {
  37. // 记录参数
  38. $this->param = $param;
  39. }
  40. }