OrderPack.php 240 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: zilongs
  5. * Date: 20-10-2
  6. * Time: 下午10:57
  7. */
  8. namespace App\Models;
  9. class OrderPack extends BaseModel
  10. {
  11. public function team()
  12. {
  13. return $this->belongsTo(Team::class);
  14. }
  15. }