25 lines
797 B
PHP
25 lines
797 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | SentCMS [ WE CAN DO IT JUST THINK IT ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2024 http://www.tensent.cn All rights reserved.
|
|
// +----------------------------------------------------------------------
|
|
// | Author: molong <molong@tensent.cn> <http://www.tensent.cn>
|
|
// +----------------------------------------------------------------------
|
|
namespace App\Models\System;
|
|
|
|
use Illuminate\Database\Eloquent\Casts\Attribute;
|
|
|
|
class Crontab extends \App\Models\BaseModel {
|
|
|
|
protected $table = 'system_crontabs';
|
|
protected $fillable = [];
|
|
protected $hidden = ['deleted_at'];
|
|
|
|
protected function casts(): array {
|
|
return [
|
|
'status' => 'integer',
|
|
];
|
|
}
|
|
}
|