Station.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. 'online_state',
  29. 'address',
  30. 'remark',
  31. 'open_time',
  32. 'open_user_id',
  33. 'creator_id',
  34. 'created_at',
  35. 'updated_at',
  36. 'deleted_at'
  37. );
  38. /**
  39. * 获取基站列表
  40. */
  41. public function getList()
  42. {
  43. $res = $this->dataRange()
  44. ->catchSearch()
  45. ->append(['is_online','is_online_text'])
  46. ->order($this->aliasField('online_time'), 'desc')
  47. ->paginate()->each(function($item, $key) {
  48. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  49. $item['longitude']=$wgsLoc['lng'];
  50. $item['latitude']=$wgsLoc['lat'];
  51. });
  52. return $res;
  53. }
  54. public function getMapList(){
  55. $res = $this->dataRange()
  56. ->catchSearch()
  57. ->append(['is_online','is_online_text'])
  58. ->order($this->aliasField('online_time'), 'desc')
  59. ->paginate()->each(function($item, $key) {
  60. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  61. $item['longitude']=$wgsLoc['lng'];
  62. $item['latitude']=$wgsLoc['lat'];
  63. });
  64. return $res;
  65. }
  66. public function getExportList(){
  67. $res = $this->dataRange()
  68. ->catchSearch()
  69. // ->field('mac,name,latitude,longitude,online_time')
  70. ->append(['is_online_text','is_online'])
  71. // ->cache(120)
  72. ->select()
  73. ->each(function($item, $key) {
  74. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  75. $item['longitude']=$wgsLoc['lng'];
  76. $item['latitude']=$wgsLoc['lat'];
  77. })->toArray();
  78. return $res;
  79. }
  80. public function getAllList($start=0,$limit=4000){
  81. $res = $this
  82. ->catchSearch()
  83. // ->field('mac,name,latitude,longitude,online_time')
  84. ->append(['is_online_text','is_online'])
  85. ->cache(120)
  86. ->limit($start,$limit)
  87. ->select()
  88. ->each(function($item, $key) {
  89. $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
  90. $item['longitude']=$wgsLoc['lng'];
  91. $item['latitude']=$wgsLoc['lat'];
  92. })->toArray();
  93. return $res;
  94. }
  95. /**
  96. * 根据名称搜索
  97. */
  98. public function searchNameAttr($query, $value, $data)
  99. {
  100. return $query->where('name', 'like', '%'.$value.'%');
  101. }
  102. /**
  103. * 根据编号搜索
  104. */
  105. public function searchShortCodeAttr($query, $value, $data)
  106. {
  107. return $query->where('shortcode|mac', 'like', '%'.$value.'%');
  108. }
  109. /**
  110. * 关键字
  111. */
  112. public function searchKeywordsAttr($query, $value, $data)
  113. {
  114. return $query->where('name|mac', 'like', '%'.$value.'%');
  115. }
  116. /**
  117. * 根据状态搜索
  118. */
  119. public function searchOnlineStateAttr($query, $value, $data)
  120. {
  121. $time=date('Y-m-d H:i:s',time()-300);
  122. if($value=='1'){
  123. return $query->where('online_time', '>=', $time);
  124. }elseif($value=='2'){
  125. return $query->where(function ($query) use( $time) {
  126. $query->whereOr('online_time','<', $time)->whereOr('online_time','=', null);
  127. });
  128. }
  129. }
  130. }