| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- declare(strict_types=1);
- namespace App\Model;
- /**
- * 机器人站点关联表
- */
- class RRobotSiteModel extends Model
- {
- /**
- * The connection name for the model.
- */
- protected ?string $connection = 'robot';
- /**
- * The table associated with the model.
- */
- protected ?string $table = 'r_robot_site';
- 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 = [];
- }
|