mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-15 11:08:10 +00:00
18 lines
289 B
PHP
18 lines
289 B
PHP
<?php
|
|
|
|
namespace app\dao\system;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\system\SystemEventData;
|
|
|
|
class SystemEventDataDao extends BaseDao
|
|
{
|
|
/**
|
|
* 设置模型
|
|
* @return string
|
|
*/
|
|
protected function setModel(): string
|
|
{
|
|
return SystemEventData::class;
|
|
}
|
|
} |