mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-14 18:38:11 +00:00
14 lines
225 B
PHP
14 lines
225 B
PHP
<?php
|
|
|
|
namespace app\dao\wechat;
|
|
|
|
use app\dao\BaseDao;
|
|
use app\model\wechat\RoutineScheme;
|
|
|
|
class RoutineSchemeDao extends BaseDao
|
|
{
|
|
protected function setModel(): string
|
|
{
|
|
return RoutineScheme::class;
|
|
}
|
|
} |