| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- declare(strict_types=1);
- namespace App\Model;
- /**
- * 充电站点订单自动补充任务用户
- */
- class RRobotAutoUserModel extends Model
- {
- /**
- * The connection name for the model.
- */
- protected ?string $connection = 'robot';
- /**
- * The table associated with the model.
- */
- protected ?string $table = 'r_robot_auto_user';
- public bool $timestamps = true;
- /**
- * The name of the "created at" column.
- *
- * @var null|string
- */
- public const CREATED_AT = 'create_time';
- /**
- * The name of the "updated at" column.
- *
- * @var null|string
- */
- public const UPDATED_AT = 'update_time';
- /**
- * The attributes that are mass assignable.
- */
- protected array $fillable = [];
- /**
- * The attributes that should be cast to native types.
- */
- protected array $casts = [];
- }
|