SensitiveWord.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~2020 http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. namespace catchAdmin\system\model;
  12. use catchAdmin\permissions\model\Users;
  13. use catcher\base\CatchModel;
  14. class SensitiveWord extends CatchModel
  15. {
  16. protected $name = 'sensitive_word';
  17. protected $field = [
  18. 'id', //
  19. 'word', // 词汇
  20. 'creator_id', // 创建人ID
  21. 'created_at', // 创建时间
  22. 'updated_at', // 更新时间
  23. 'deleted_at', // 删除时间
  24. ];
  25. /**
  26. * 词汇查询
  27. *
  28. * @time 2020年06月17日
  29. * @param $query
  30. * @param $value
  31. * @param $data
  32. * @return mixed
  33. */
  34. public function searchWordAttr($query, $value, $data)
  35. {
  36. return $query->whereLike('word', $value);
  37. }
  38. }