SysDictData.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <?php
  2. namespace catchAdmin\system\model;
  3. use catcher\base\CatchModel as Model;
  4. use think\facade\Db;
  5. use think\facade\Cache;
  6. use catchAdmin\system\model\SysDictType;
  7. class SysDictData extends Model
  8. {
  9. // 表名
  10. public $name = 'sys_dict_data';
  11. // 数据库字段映射
  12. public $field = array(
  13. 'id',
  14. // 字典类型id
  15. 'type_id',
  16. // 值
  17. 'value',
  18. // 编码
  19. 'code',
  20. // 排序
  21. 'sort',
  22. // 备注
  23. 'remark',
  24. // 状态(字典 0正常 1停用 2删除)
  25. 'status',
  26. // 创建人ID
  27. 'creator_id',
  28. // 创建时间
  29. 'created_at',
  30. // 更新时间
  31. 'updated_at',
  32. // 软删除
  33. 'deleted_at',
  34. );
  35. public function getList()
  36. {
  37. return $this->catchSearch()
  38. ->order('sort', 'asc')
  39. ->paginate();
  40. }
  41. /**
  42. * 获取字典值
  43. * @param String type_code 字典类型code
  44. * @param String code 字典值 code
  45. */
  46. public function getValueByCode($type_code, $code)
  47. {
  48. if (!isset($type_code) || !isset($code)) {
  49. return false;
  50. }
  51. // 有缓存,使用缓存
  52. if (Cache::has("dict_data_{$type_code}_{$code}")) {
  53. return Cache::get("dict_data_{$type_code}_{$code}");
  54. }
  55. // 查出字典类型id
  56. // $type_id = Db::table("sys_dict_type")->where('code', $type_code)->value('id');
  57. $type_id = (new SysDictType)->getTypeIdByCode($type_code);
  58. return $this->where('type_id', $type_id)
  59. ->where('code', $code)
  60. ->cache("dict_data_{$type_code}_{$code}", 60) //缓存
  61. ->value('value');
  62. }
  63. //根据类型中的唯一编码获取所有类型
  64. public function getTypesByCode($type_code)
  65. {
  66. //获取类型id
  67. // $type_id = Db::table("sys_dict_type")->where('code',$type_code)->value('id');
  68. $type_id = (new SysDictType)->getTypeIdByCode($type_code);
  69. // 获取该类型下的所有字典
  70. $type_data = $this->where('type_id', $type_id)->order('sort', 'asc')->column('type_id,value,code,remark,sort');
  71. $options = [];
  72. foreach ($type_data as $key => $value) {
  73. $option = array(
  74. 'value' => $value['code'],
  75. 'text' => $value['value'],
  76. 'remark' => $value['remark']
  77. );
  78. array_push($options, $option);
  79. }
  80. return $options;
  81. }
  82. //根据类型中的唯一编码获取所有类型
  83. public function getTypesByCodeWithRemark($type_code, $remark)
  84. {
  85. //获取类型id
  86. // $type_id = Db::table("sys_dict_type")->where('code',$type_code)->value('id');
  87. $type_id = (new SysDictType)->getTypeIdByCode($type_code);
  88. // 获取该类型下的所有字典
  89. $type_data = $this->where('type_id', $type_id)->whereIn('remark', $remark)->order('sort', 'asc')->column('type_id,value,code,remark,sort');
  90. $options = [];
  91. foreach ($type_data as $key => $value) {
  92. $option = array(
  93. 'value' => (int)$value['code'],
  94. 'text' => $value['value'],
  95. 'remark' => $value['remark']
  96. );
  97. array_push($options, $option);
  98. }
  99. return $options;
  100. }
  101. /**
  102. * 获取字典备注
  103. * @param String type_code 字典类型code
  104. * @param String code 字典值 code
  105. */
  106. public function getRemarkByCode($type_code, $value)
  107. {
  108. if (!isset($type_code) || !isset($value)) {
  109. return false;
  110. }
  111. $type_id = Db::table("sys_dict_type")->where('code', $type_code)->value('id');
  112. return $this->where('type_id', $type_id)
  113. ->where('code', $value)
  114. ->cache(true, 60)
  115. ->value('remark');
  116. }
  117. /**
  118. * 词汇查询
  119. *
  120. * @time 2020年06月17日
  121. * @param $query
  122. * @param $value
  123. * @param $data
  124. * @return mixed
  125. */
  126. public function searchTypeIdAttr($query, $value, $data)
  127. {
  128. return $query->where('type_id', $value);
  129. }
  130. public function searchValueAttr($query, $value, $data)
  131. {
  132. return $query->whereLike('value', $value);
  133. }
  134. public function searchCodeAttr($query, $value, $data)
  135. {
  136. return $query->whereLike('code', $value);
  137. }
  138. }