SysConfig.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?php
  2. namespace catchAdmin\permissions\model;
  3. use catcher\base\CatchModel as Model;
  4. use \think\facade\Cache;
  5. class SysConfig extends Model
  6. {
  7. // 表名
  8. public $name = 'sys_config';
  9. // 数据库字段映射
  10. public $field = array(
  11. 'id',
  12. 'department_id',
  13. 'device_id',
  14. 'field',
  15. 'fieldValue',
  16. 'type',
  17. // 创建人ID
  18. 'creator_id',
  19. // 创建时间
  20. 'created_at',
  21. // 更新时间
  22. 'updated_at',
  23. // 软删除
  24. 'deleted_at',
  25. );
  26. /**
  27. * 获取根据类型分组的数据
  28. */
  29. public function getListGroupByType()
  30. {
  31. $group_data = [];
  32. $list = $this->catchSearch()
  33. ->select()
  34. ->toArray();
  35. foreach ($list as $val) {
  36. $group_data[$val['type']][$val['field']] = $val['fieldValue'];
  37. }
  38. return $group_data;
  39. }
  40. /**
  41. * 获取离线配置值
  42. */
  43. public static function getOfflineConfigValue(String $field)
  44. {
  45. if (Cache::has($field)) {
  46. return Cache::get($field);
  47. }
  48. return SysConfig::where('type', 'offline_config')
  49. ->where('field', $field)
  50. ->cache($field, 60)
  51. ->value('fieldValue');
  52. }
  53. public function getConfigListByType($type)
  54. {
  55. $list = $this->catchSearch()
  56. ->where('type','in',$type)
  57. ->select()
  58. ->toArray();
  59. return $list;
  60. }
  61. /**
  62. * 根据字段和类型获取配置值
  63. */
  64. public static function getConfigValueBy(String $field,String $type)
  65. {
  66. return SysConfig::where('type', $type)
  67. ->where('field', $field)
  68. ->cache($type.'_'.$field, 60)
  69. ->value('fieldValue');
  70. }
  71. }