SystemNotificationDao.php 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. declare (strict_types=1);
  12. namespace app\dao\system;
  13. use app\dao\BaseDao;
  14. use app\model\system\SystemNotification;
  15. /**
  16. *
  17. * Class SystemUserLevelDao
  18. * @package app\dao\system
  19. */
  20. class SystemNotificationDao extends BaseDao
  21. {
  22. /**
  23. * 设置模型
  24. * @return string
  25. */
  26. protected function setModel(): string
  27. {
  28. return SystemNotification::class;
  29. }
  30. /**
  31. * 获取列表
  32. * @param array $where
  33. * @param string $field
  34. * @param int $page
  35. * @param int $limit
  36. * @return array
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\DbException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. * @author: 吴汐
  41. * @email: 442384644@qq.com
  42. * @date: 2023/8/16
  43. */
  44. public function getList(array $where, string $field = '*', int $page = 0, $limit = 0)
  45. {
  46. return $this->getModel()->where($where)->field($field)->when($page && $limit, function ($query) use ($page, $limit) {
  47. $query->page($page, $limit);
  48. })->order('id asc')->select()->toArray();
  49. }
  50. /**
  51. * 获取tempid
  52. * @param $type
  53. * @return array
  54. * @author: 吴汐
  55. * @email: 442384644@qq.com
  56. * @date: 2023/8/16
  57. */
  58. public function getTempId($type)
  59. {
  60. $whereField = 'is_' . $type;
  61. $field = $type . '_tempid';
  62. return array_unique($this->getModel()->where($whereField, 1)->where($field, '<>', '')->column($field));
  63. }
  64. /**
  65. * 获取tempkey
  66. * @param $type
  67. * @return array
  68. * @throws \think\db\exception\DataNotFoundException
  69. * @throws \think\db\exception\DbException
  70. * @throws \think\db\exception\ModelNotFoundException
  71. * @author: 吴汐
  72. * @email: 442384644@qq.com
  73. * @date: 2023/8/16
  74. */
  75. public function getTempKey($type)
  76. {
  77. $whereField = 'is_' . $type;
  78. $field = $type . '_tempkey';
  79. $content = $type . '_content,name';
  80. return $this->getModel()->where($whereField, 1)->column($content, $field);
  81. }
  82. }