123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\common\dao\system\config;
- use app\common\dao\BaseDao;
- use app\common\model\BaseModel;
- use app\common\model\system\config\SystemConfigClassify;
- use think\Collection;
- use think\db\exception\DataNotFoundException;
- use think\db\exception\DbException;
- use think\db\exception\ModelNotFoundException;
- use think\Model;
- /**
- * Class SystemConfigClassifyDao
- * @package app\common\dao\system\config
- * @author xaboy
- * @day 2020-03-27
- */
- class SystemConfigClassifyDao extends BaseDao
- {
- /**
- * @return BaseModel
- * @author xaboy
- * @day 2020-03-30
- */
- protected function getModel(): string
- {
- return SystemConfigClassify::class;
- }
- /**
- * @return array
- * @author xaboy
- * @day 2020-03-27
- */
- public function getOptions()
- {
- return SystemConfigClassify::column('pid,classify_name', 'config_classify_id');
- }
- /**
- * @return array
- * @author xaboy
- * @day 2020-04-22
- */
- public function getTopOptions()
- {
- return SystemConfigClassify::getDB()->where('pid', 0)->column('classify_name', 'config_classify_id');
- }
- /**
- * @return Collection
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author xaboy
- * @day 2020-03-31
- */
- public function all()
- {
- return SystemConfigClassify::getDB()->select();
- }
- /**
- * @return int
- * @author xaboy
- * @day 2020-03-31
- */
- public function count()
- {
- return SystemConfigClassify::getDB()->count();
- }
- /**
- * @param int $pid
- * @param string $field
- * @return Collection
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author xaboy
- * @day 2020-03-27
- */
- public function children(int $pid, string $field = 'id,classify_name')
- {
- return SystemConfigClassify::getDB()->where('pid', $pid)->field($field)->select();
- }
- /**
- * @param int $id
- * @return bool
- * @author xaboy
- * @day 2020-03-27
- */
- public function existsChild(int $id): bool
- {
- return $this->fieldExists('pid', $id);
- }
- /**
- * @param $key
- * @param int|null $except
- * @return bool
- * @author xaboy
- * @day 2020-03-27
- */
- public function keyExists($key, ?int $except = null): bool
- {
- return $this->fieldExists('classify_key', $key, $except);
- }
- /**
- * @param int $pid
- * @param int|null $except
- * @return bool
- * @author xaboy
- * @day 2020-03-27
- */
- public function pidExists(int $pid, ?int $except = null): bool
- {
- return $this->fieldExists('config_classify_id', $pid, $except);
- }
- /**
- * @param string $key
- * @return mixed
- * @author xaboy
- * @day 2020-04-22
- */
- public function keyById(string $key)
- {
- return SystemConfigClassify::getDB()->where('classify_key', $key)->value('config_classify_id');
- }
- /**
- * @param string $key
- * @return array|Model|null
- * @throws DataNotFoundException
- * @throws DbException
- * @throws ModelNotFoundException
- * @author xaboy
- * @day 2020-04-22
- */
- public function keyByData(string $key)
- {
- return SystemConfigClassify::getDB()->where('classify_key', $key)->find();
- }
- }
|