33 lines
701 B
PHP
33 lines
701 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Model;
|
|
|
|
/**
|
|
* @property int $cron_id
|
|
* @property int $org_id
|
|
* @property string $cron_name
|
|
* @property int $status
|
|
* @property int $del_flag
|
|
* @property string $create_time
|
|
* @property string $update_time
|
|
*/
|
|
class Cron extends Model
|
|
{
|
|
/**
|
|
* The table associated with the model.
|
|
*/
|
|
protected ?string $table = 'cron';
|
|
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*/
|
|
protected array $fillable = [];
|
|
|
|
/**
|
|
* The attributes that should be cast to native types.
|
|
*/
|
|
protected array $casts = ['cron_id' => 'integer', 'org_id' => 'integer', 'status' => 'integer', 'del_flag' => 'integer'];
|
|
}
|