123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?php
- namespace catchAdmin\device\model;
- use catcher\base\CatchModel as Model;
- use catchAdmin\permissions\model\DataRangScopeTrait;
- use catchAdmin\device\model\get\StationGet;
- use think\facade\Db;
- class Station extends Model
- {
- use DataRangScopeTrait;
- use StationGet;
- // 表名
- public $name = 'stations';
- // 数据库字段映射
- public $field = array(
- 'id',
- 'mac',
- 'shortcode',
- 'name',
- 'model',
- 'serial_number',
- 'department_id',
- 'version',
- 'open_status',
- 'sim_no',
- 'longitude',
- 'latitude',
- 'online_time',
- 'address',
- 'remark',
- 'open_time',
- 'open_user_id',
- 'creator_id',
- 'created_at',
- 'updated_at',
- 'deleted_at'
- );
- /**
- * 获取基站列表
- */
- public function getList()
- {
- $res = $this->dataRange()
- ->catchSearch()
- ->append(['is_online','is_online_text'])
- ->order($this->aliasField('online_time'), 'desc')
- ->paginate()->each(function($item, $key) {
- $wgsLoc = \algorithm\Geometry::convertGcj02ToBd09((float)$item['latitude'],(float)$item['longitude']);
- $item['longitude']=$wgsLoc['lng'];
- $item['latitude']=$wgsLoc['lat'];
- });
-
- return $res;
- }
- public function getMapList(){
- $res = $this->dataRange()
- ->catchSearch()
- ->append(['is_online','is_online_text'])
- ->order($this->aliasField('online_time'), 'desc')
- ->paginate()->each(function($item, $key) {
- $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
- $item['longitude']=$wgsLoc['lng'];
- $item['latitude']=$wgsLoc['lat'];
- });
-
- return $res;
- }
- public function getAllList(){
- $res = $this
- ->catchSearch()
- // ->field('mac,name,latitude,longitude,online_time')
- ->append(['is_online_text','is_online'])
- ->cache(120)
- ->select()
- ->each(function($item, $key) {
- $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);
- $item['longitude']=$wgsLoc['lng'];
- $item['latitude']=$wgsLoc['lat'];
- })->toArray();
- return $res;
- }
- /**
- * 根据名称搜索
- */
- public function searchNameAttr($query, $value, $data)
- {
- return $query->where('name', 'like', '%'.$value.'%');
- }
- /**
- * 根据编号搜索
- */
- public function searchShortCodeAttr($query, $value, $data)
- {
- return $query->where('shortcode|mac', 'like', '%'.$value.'%');
- }
- /**
- * 关键字
- */
- public function searchKeywordsAttr($query, $value, $data)
- {
- return $query->where('name|mac', 'like', '%'.$value.'%');
- }
- /**
- * 根据状态搜索
- */
- public function searchOnlineStateAttr($query, $value, $data)
- {
- $time=date('Y-m-d H:i:s',time()-300);
- if($value=='1'){
- return $query->where('online_time', '>=', $time);
- }elseif($value=='2'){
- return $query->where(function ($query) use( $time) {
- $query->whereOr('online_time','<', $time)->whereOr('online_time','=', null);
- });
- }
-
- }
-
-
- }
|