CRMEB/crmeb/app/dao/system/timer/SystemTimerDao.php
2023-02-14 21:14:49 +08:00

18 lines
289 B
PHP

<?php
namespace app\dao\system\timer;
use app\dao\BaseDao;
use app\model\system\timer\SystemTimer;
class SystemTimerDao extends BaseDao
{
/**
* 设置模型
* @return string
*/
protected function setModel(): string
{
return SystemTimer::class;
}
}