SystemGroupDao.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace app\dao\system\config;
  12. use app\dao\BaseDao;
  13. use app\model\system\config\SystemGroup;
  14. /**
  15. * Class SystemGroupDao
  16. * @package app\dao\system\config
  17. */
  18. class SystemGroupDao extends BaseDao
  19. {
  20. /**
  21. * @return string
  22. */
  23. protected function setModel(): string
  24. {
  25. return SystemGroup::class;
  26. }
  27. /**
  28. * 获取组合数据分页列表
  29. * @param array $where
  30. * @param int $page
  31. * @param int $limit
  32. * @return \think\Collection
  33. * @throws \think\db\exception\DataNotFoundException
  34. * @throws \think\db\exception\DbException
  35. * @throws \think\db\exception\ModelNotFoundException
  36. */
  37. public function getGroupList(array $where, array $field = ['*'], int $page = 0, int $limit = 0)
  38. {
  39. return $this->search($where)->field($field)->when($page && $limit, function ($query) use ($page, $limit) {
  40. $query->page($page, $limit);
  41. })->select()->toArray();
  42. }
  43. /**
  44. * 根据配置名称获取配置id
  45. * @param string $configName
  46. * @return mixed
  47. */
  48. public function getConfigNameId(string $configName)
  49. {
  50. return $this->value(['config_name' => $configName]);
  51. }
  52. }