SaasAgentConfig.php 761 B

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