StationGet.php 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. namespace catchAdmin\stations\model;
  3. use think\facade\Db;
  4. trait StationGet
  5. {
  6. /**
  7. * 获取学校名称(文本)
  8. */
  9. public function getSchoolNameAttr($value)
  10. {
  11. $id = $this->school_id;
  12. $name = Db::table('departments')->where('id',$id)->value('department_name');
  13. return $name;
  14. }
  15. /**
  16. * 获取学校id(文本)
  17. */
  18. // public function getSchoolIdAttr($value)
  19. // {
  20. // // var_dump($value);
  21. // $parent_id = Db::table('departments')->where('id',$value)->value('parent_id');
  22. // return [$parent_id,$value];
  23. // }
  24. /**
  25. * 获取基站朝向名称(文本)
  26. */
  27. public function getOrientationTextAttr($value)
  28. {
  29. $value = $this->orientation;
  30. if($value == 1){
  31. $value = '朝外';
  32. }elseif($value == 2){
  33. $value = '朝内';
  34. }else{
  35. $value = '未知';
  36. }
  37. return $value;
  38. }
  39. /**
  40. * 获取是否推送企业微信消息名称(文本)
  41. */
  42. public function getPushTextAttr($value)
  43. {
  44. $value = $this->enable_push_qywx;
  45. if($value == 1){
  46. $value = '是';
  47. }else{
  48. $value = '否';
  49. }
  50. return $value;
  51. }
  52. /**
  53. * 获取是否节流名称(文本)
  54. */
  55. public function getThrottlingTextAttr($value)
  56. {
  57. $value = $this->throttling;
  58. if($value == 1){
  59. $value = '开启';
  60. }else{
  61. $value = '关闭';
  62. }
  63. return $value;
  64. }
  65. /**
  66. * 获取建筑名称(文本)
  67. */
  68. public function getBuildingNameAttr($value)
  69. {
  70. $id = $this->building_id;
  71. $value = Db::table('kq_building')->where('id',$id)->value('name');
  72. return $value;
  73. }
  74. /**
  75. * 获取楼层名称(文本)
  76. */
  77. public function getFloorNameAttr($value)
  78. {
  79. $id = $this->floor_id;
  80. $value = Db::table('kq_floor')->where('id',$id)->value('name');
  81. return $value;
  82. }
  83. /**
  84. * 获取楼层名称(文本)
  85. */
  86. public function getCommandAttr($value)
  87. {
  88. if($this->is_reboot_device){
  89. return 'is_reboot_device';
  90. }elseif($this->is_restore_device){
  91. return 'is_restore_device';
  92. }else{
  93. return 'null';
  94. }
  95. }
  96. /**
  97. * 获取楼层名称(文本)
  98. */
  99. public function getConfigListAttr($value){
  100. $config_list=json_decode($value,true);
  101. $config_list['Card_INMAC']=$this->in_station_mac;
  102. $config_list['Card_OUTMAC']=$this->out_station_mac;
  103. $config_list['id']=$this->id;
  104. if(isset($config_list['IS_SLAVE']) && $config_list['IS_SLAVE']==1){
  105. $config_list['IS_SLAVE']=true;
  106. }else{
  107. $config_list['IS_SLAVE']=false;
  108. }
  109. return $config_list;
  110. }
  111. }