TelegramBotAdKeyboard.php 558 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. declare (strict_types=1);
  3. namespace App\Model\Telegram;
  4. use Hyperf\DbConnection\Model\Model;
  5. /**
  6. */
  7. class TelegramBotAdKeyboard extends Model
  8. {
  9. /**
  10. * The table associated with the model.
  11. *
  12. * @var string
  13. */
  14. protected $table = 'telegram_bot_ad_keyboard';
  15. public $primaryKey = 'rid';
  16. public $keyType = 'int';
  17. public $timestamps = false;
  18. public $incrementing = true;
  19. /**
  20. * The attributes that should be cast to native types.
  21. *
  22. * @var array
  23. */
  24. protected $casts = [];
  25. }