Order.php 481 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. declare (strict_types = 1);
  3. namespace App\Model;
  4. use Hyperf\DbConnection\Model\Model;
  5. /**
  6. */
  7. class Order extends Model
  8. {
  9. public bool $timestamps = true;
  10. /**
  11. * The table associated with the model.
  12. */
  13. protected ?string $table = 'order';
  14. /**
  15. * The attributes that are mass assignable.
  16. */
  17. protected array $fillable = [];
  18. /**
  19. * The attributes that should be cast to native types.
  20. */
  21. protected array $casts = [];
  22. }