23 lines
341 B
PHP
Raw Normal View History

2025-03-12 10:47:34 +08:00
<?php
namespace app\model\system\crontab;
use crmeb\basic\BaseModel;
use crmeb\traits\ModelTrait;
class SystemCrontab extends BaseModel
{
use ModelTrait;
/**
* 数据表主键
* @var string
*/
protected $pk = 'id';
/**
* 模型名称
* @var string
*/
protected $name = 'system_timer';
}