35 lines
760 B
PHP
35 lines
760 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $log_id
|
|
* @property int $crontab_id
|
|
* @property string $crontab_name
|
|
* @property string $callback
|
|
* @property string $duration
|
|
* @property int $status
|
|
* @property string $result
|
|
* @property string $create_time
|
|
* @property string $deleted_at
|
|
*/
|
|
class CrontabLog extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'crontab_log';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['log_id' => 'integer', 'crontab_id' => 'integer', 'status' => 'integer'];
|
|
}
|