SysDictType.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. namespace catchAdmin\system\model;
  3. use catcher\base\CatchModel as Model;
  4. use think\facade\Db;
  5. class SysDictType extends Model
  6. {
  7. // 表名
  8. public $name = 'sys_dict_type';
  9. // 数据库字段映射
  10. public $field = array(
  11. 'id',
  12. // 名称
  13. 'name',
  14. // 编码
  15. 'code',
  16. // 排序
  17. 'sort',
  18. // 状态(字典 0正常 1停用 2删除)
  19. 'status',
  20. // 备注
  21. 'remark',
  22. // 创建人ID
  23. 'creator_id',
  24. // 创建时间
  25. 'created_at',
  26. // 更新时间
  27. 'updated_at',
  28. // 软删除
  29. 'deleted_at',
  30. );
  31. public function getList()
  32. {
  33. return $this->catchSearch()
  34. ->order(['sort', 'id'])
  35. ->paginate();
  36. }
  37. public function searchNameAttr($query, $value, $data)
  38. {
  39. return $query->whereLike('name', $value);
  40. }
  41. public function searchCodeAttr($query, $value, $data)
  42. {
  43. return $query->whereLike('code', $value);
  44. }
  45. /**
  46. * 根据 code 获取字典类型 id
  47. */
  48. public static function getTypeIdByCode($code)
  49. {
  50. if (\think\facade\Cache::has("dict_type_{$code}")) {
  51. return \think\facade\Cache::get("dict_type_{$code}");
  52. }
  53. return SysDictType::where('code', $code)->cache("dict_type_{$code}", 60)->value('id');
  54. }
  55. }