OrderInfo.php 295 B

123456789101112131415
  1. <?php
  2. namespace App\Libs\TikTok\MiniProgram\Pay;
  3. class OrderInfo
  4. {
  5. public string $order_id;
  6. public string $order_token;
  7. public function __construct(string $order_id, string $order_token)
  8. {
  9. $this->order_id = $order_id;
  10. $this->order_token = $order_token;
  11. }
  12. }