SystemNotification.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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\model\system;
  12. use crmeb\basic\BaseModel;
  13. use crmeb\traits\ModelTrait;
  14. /**
  15. * 系统等级设置模型
  16. * Class SystemUserLevel
  17. * @package app\model\system
  18. */
  19. class SystemNotification extends BaseModel
  20. {
  21. use ModelTrait;
  22. /**
  23. * 数据表主键
  24. * @var string
  25. */
  26. protected $pk = 'id';
  27. /**
  28. * 模型名称
  29. * @var string
  30. */
  31. protected $name = 'system_notification';
  32. public function searchTypeAttr($query, $value)
  33. {
  34. if ($value != '') {
  35. $query->where('type', $value);
  36. }
  37. }
  38. public function searchNameAttr($query, $value)
  39. {
  40. if ($value != '') {
  41. $query->whereLike('name|title', "%$value%");
  42. }
  43. }
  44. }