RRobotAutoUserModel.php 892 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Model;
  4. /**
  5. * 充电站点订单自动补充任务用户
  6. */
  7. class RRobotAutoUserModel extends Model
  8. {
  9. /**
  10. * The connection name for the model.
  11. */
  12. protected ?string $connection = 'robot';
  13. /**
  14. * The table associated with the model.
  15. */
  16. protected ?string $table = 'r_robot_auto_user';
  17. public bool $timestamps = true;
  18. /**
  19. * The name of the "created at" column.
  20. *
  21. * @var null|string
  22. */
  23. public const CREATED_AT = 'create_time';
  24. /**
  25. * The name of the "updated at" column.
  26. *
  27. * @var null|string
  28. */
  29. public const UPDATED_AT = 'update_time';
  30. /**
  31. * The attributes that are mass assignable.
  32. */
  33. protected array $fillable = [];
  34. /**
  35. * The attributes that should be cast to native types.
  36. */
  37. protected array $casts = [];
  38. }