mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-21 16:48:14 +00:00
18 lines
278 B
PHP
18 lines
278 B
PHP
<?php
|
|
|
|
namespace app\dao\system\lang;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\system\lang\LangCode;
|
|
|
|
class LangCodeDao extends BaseDao
|
|
{
|
|
/**
|
|
* 设置模型
|
|
* @return string
|
|
*/
|
|
protected function setModel(): string
|
|
{
|
|
return LangCode::class;
|
|
}
|
|
} |