mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-21 08:28:14 +00:00
25 lines
420 B
PHP
25 lines
420 B
PHP
<?php
|
|
|
|
namespace app\dao\system;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\system\SystemCrudList;
|
|
|
|
/**
|
|
* @author wuhaotian
|
|
* @email 442384644@qq.com
|
|
* @date 2024/5/20
|
|
*/
|
|
class SystemCrudListDao extends BaseDao
|
|
{
|
|
/**
|
|
* @return string
|
|
* @author wuhaotian
|
|
* @email 442384644@qq.com
|
|
* @date 2024/5/20
|
|
*/
|
|
protected function setModel(): string
|
|
{
|
|
return SystemCrudList::class;
|
|
}
|
|
} |