PlayerSegment.php 297 B

12345678910111213141516
  1. <?php
  2. namespace App\Game\BetBy;
  3. class PlayerSegment
  4. {
  5. public $playerId;
  6. public $segment;
  7. // 其他属性...
  8. public function __construct(array $data)
  9. {
  10. $this->playerId = $data['player_id'];
  11. $this->segment = $data['segment'];
  12. // 其他属性...
  13. }
  14. }