Station.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. namespace catchAdmin\device\model;
  3. use catcher\base\CatchModel as Model;
  4. use catchAdmin\permissions\model\DataRangScopeTrait;
  5. use catchAdmin\device\model\get\StationGet;
  6. use think\facade\Db;
  7. class Station extends Model
  8. {
  9. use DataRangScopeTrait;
  10. use StationGet;
  11. // 表名
  12. public $name = 'stations';
  13. // 数据库字段映射
  14. public $field = array(
  15. 'id',
  16. 'mac',
  17. 'shortcode',
  18. 'name',
  19. 'model',
  20. 'serial_number',
  21. 'department_id',
  22. 'version',
  23. 'open_status',
  24. 'sim_no',
  25. 'longitude',
  26. 'latitude',
  27. 'online_time',
  28. 'address',
  29. 'remark',
  30. 'open_time',
  31. 'open_user_id',
  32. 'creator_id',
  33. 'created_at',
  34. 'updated_at',
  35. 'deleted_at'
  36. );
  37. /**
  38. * 获取基站列表
  39. */
  40. public function getList()
  41. {
  42. $res = $this->dataRange()
  43. ->catchSearch()
  44. ->append(['is_online','is_online_text'])
  45. ->order($this->aliasField('online_time'), 'desc')
  46. ->paginate()->each(function($item, $key) {
  47. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  48. $item['longitude']=$wgsLoc['lng'];
  49. $item['latitude']=$wgsLoc['lat'];
  50. });
  51. return $res;
  52. }
  53. public function getMapList(){
  54. $res = $this->dataRange()
  55. ->catchSearch()
  56. ->append(['is_online','is_online_text'])
  57. ->order($this->aliasField('online_time'), 'desc')
  58. ->paginate()->each(function($item, $key) {
  59. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  60. $item['longitude']=$wgsLoc['lng'];
  61. $item['latitude']=$wgsLoc['lat'];
  62. });
  63. return $res;
  64. }
  65. public function getExportList(){
  66. $res = $this->dataRange()
  67. ->catchSearch()
  68. // ->field('mac,name,latitude,longitude,online_time')
  69. ->append(['is_online_text','is_online'])
  70. // ->cache(120)
  71. ->select()
  72. ->each(function($item, $key) {
  73. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  74. $item['longitude']=$wgsLoc['lng'];
  75. $item['latitude']=$wgsLoc['lat'];
  76. })->toArray();
  77. return $res;
  78. }
  79. public function getAllList($start=0,$limit=4000){
  80. $res = $this
  81. ->catchSearch()
  82. // ->field('mac,name,latitude,longitude,online_time')
  83. ->append(['is_online_text','is_online'])
  84. ->cache(120)
  85. ->limit($start,$limit)
  86. ->select()
  87. ->each(function($item, $key) {
  88. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  89. $item['longitude']=$wgsLoc['lng'];
  90. $item['latitude']=$wgsLoc['lat'];
  91. })->toArray();
  92. return $res;
  93. }
  94. /**
  95. * 根据名称搜索
  96. */
  97. public function searchNameAttr($query, $value, $data)
  98. {
  99. return $query->where('name', 'like', '%'.$value.'%');
  100. }
  101. /**
  102. * 根据编号搜索
  103. */
  104. public function searchShortCodeAttr($query, $value, $data)
  105. {
  106. return $query->where('shortcode|mac', 'like', '%'.$value.'%');
  107. }
  108. /**
  109. * 关键字
  110. */
  111. public function searchKeywordsAttr($query, $value, $data)
  112. {
  113. return $query->where('name|mac', 'like', '%'.$value.'%');
  114. }
  115. /**
  116. * 根据状态搜索
  117. */
  118. public function searchOnlineStateAttr($query, $value, $data)
  119. {
  120. $time=date('Y-m-d H:i:s',time()-300);
  121. if($value=='1'){
  122. return $query->where('online_time', '>=', $time);
  123. }elseif($value=='2'){
  124. return $query->where(function ($query) use( $time) {
  125. $query->whereOr('online_time','<', $time)->whereOr('online_time','=', null);
  126. });
  127. }
  128. }
  129. }