Files

40 lines
790 B
PHP
Raw Permalink Normal View History

<?php
// +----------------------------------------------------------------------
// | Author: ScottPan Team
// +----------------------------------------------------------------------
namespace app\dao\store;
use app\dao\BaseDao;
use app\model\store\StoreConfig;
//use crmeb\traits\SearchDaoTrait;
/**
* Class StoreConfigDao
* @package app\dao\store
*/
class StoreConfigDao extends BaseDao
{
// use SearchDaoTrait;
/**
* @return string
*/
protected function setModel(): string
{
return StoreConfig::class;
}
// /**
// * 搜索
// * @param array $where
// * @return \crmeb\basic\BaseModel|mixed|\think\Model
// */
// public function search(array $where = [])
// {
// return $this->searchWhere($where);
// }
}