SaasPrintClient.php 730 B

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