Station.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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::convertGcj02ToBd09((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 getAllList(){
  66. $res = $this
  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. /**
  80. * 根据名称搜索
  81. */
  82. public function searchNameAttr($query, $value, $data)
  83. {
  84. return $query->where('name', 'like', '%'.$value.'%');
  85. }
  86. /**
  87. * 根据编号搜索
  88. */
  89. public function searchShortCodeAttr($query, $value, $data)
  90. {
  91. return $query->where('shortcode|mac', 'like', '%'.$value.'%');
  92. }
  93. /**
  94. * 关键字
  95. */
  96. public function searchKeywordsAttr($query, $value, $data)
  97. {
  98. return $query->where('name|mac', 'like', '%'.$value.'%');
  99. }
  100. /**
  101. * 根据状态搜索
  102. */
  103. public function searchOnlineStateAttr($query, $value, $data)
  104. {
  105. $time=date('Y-m-d H:i:s',time()-300);
  106. if($value=='1'){
  107. return $query->where('online_time', '>=', $time);
  108. }elseif($value=='2'){
  109. return $query->where(function ($query) use( $time) {
  110. $query->whereOr('online_time','<', $time)->whereOr('online_time','=', null);
  111. });
  112. }
  113. }
  114. }