SaasOrderItem.php 663 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace app\model\saas;
  3. use app\extra\basic\Model;
  4. class SaasOrderItem extends Model
  5. {
  6. /**
  7. * The connection name for the model.
  8. *
  9. * @var string|null
  10. */
  11. protected $connection = 'mysql';
  12. /**
  13. * The table associated with the model.
  14. *
  15. * @var string
  16. */
  17. protected string $table = "saas_order_item";
  18. /**
  19. * The primary key associated with the table.
  20. *
  21. * @var string
  22. */
  23. protected string $primaryKey = "id";
  24. /**
  25. * Indicates if the model should be timestamped.
  26. *
  27. * @var bool
  28. */
  29. public bool $timestamps = false;
  30. }