Station.php 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. <?php
  2. namespace catchAdmin\stations\model;
  3. use catcher\base\CatchModel as Model;
  4. use catchAdmin\permissions\model\DataRangScopeTrait;
  5. use catchAdmin\stations\model\StationGet;
  6. use catchAdmin\stations\model\StationSearch;
  7. class Station extends Model
  8. {
  9. use DataRangScopeTrait;
  10. use StationGet;
  11. use StationSearch;
  12. // 表名
  13. public $name = 'stations';
  14. // 数据库字段映射
  15. public $field = array(
  16. 'id',
  17. // 基站名称
  18. 'station_name',
  19. // 基站Mac
  20. 'station_mac',
  21. // 基站简码
  22. 'station_code',
  23. // 基站类型
  24. 'station_type',
  25. // 经度
  26. 'longitude',
  27. // 纬度
  28. 'latitude',
  29. // x轴坐标
  30. 'coordinate_x',
  31. // y轴坐标
  32. 'coordinate_y',
  33. // 出入口id
  34. 'access_id',
  35. // 省
  36. 'province_id',
  37. // 市
  38. 'city_id',
  39. // 县区
  40. 'district_id',
  41. // 在线时间
  42. 'online_time',
  43. // 安装图片
  44. 'install_photo',
  45. // 基站朝向 0-未知 1-朝外 2-朝内
  46. 'orientation',
  47. // 学校id
  48. 'school_id',
  49. // 基站型号
  50. 'station_model',
  51. // 基站串号
  52. 'station_sn',
  53. // 基站版本
  54. 'station_version',
  55. // WAN口IP
  56. 'wan_ip',
  57. // 网络模式 0-静态地址,1-动态获取,2-PPPOE拨号,3-3G拨号,4-4G拨号
  58. 'net_model',
  59. // 信号强度(dbm)
  60. 'rssi',
  61. // sim卡序列号
  62. 'sim_serial_number',
  63. // 话机编号
  64. 'cmcc_phone_id',
  65. // 考勤配置
  66. 'attendance_config',
  67. // 信号灵敏度 默认62,大于此值会被过滤
  68. 'rssi_sensitive',
  69. // 节流 0-关闭,1-开启
  70. 'throttling',
  71. // 安装地址
  72. 'address',
  73. // 推送企业微信0-否,1-是
  74. 'enable_push_qywx',
  75. // 建筑id
  76. 'building_id',
  77. // 楼层id
  78. 'floor_id',
  79. //房间
  80. 'room_no',
  81. // 创建人ID
  82. 'creator_id',
  83. // 创建时间
  84. 'created_at',
  85. // 更新时间
  86. 'updated_at',
  87. // 软删除
  88. 'deleted_at',
  89. );
  90. /**
  91. * 获取基站列表
  92. */
  93. public function getStationList($field,$order)
  94. {
  95. $res = $this->dataRange()
  96. ->catchSearch()
  97. ->append(['school_name', 'building_name', 'floor_name', 'push_text', 'throttling_text', 'orientation_text','command'])
  98. ->order($this->aliasField($field), $order)
  99. ->paginate();
  100. return $res;
  101. }
  102. /**
  103. * 获取所有基站数据(no limit)
  104. */
  105. public function getRangeData(){
  106. $res = $this->dataRange()
  107. ->catchSearch()
  108. ->append(['area_id','province_name','city_name','district_name','school_name','access_name','building_name','floor_name','push_text','throttling_text','orientation_text'])
  109. ->order($this->aliasField('id'), 'desc')
  110. ->select();
  111. return $res;
  112. }
  113. /**
  114. * 检测基站MAC格式是否正确
  115. */
  116. public function checkStationMacFormat($mac)
  117. {
  118. $mac = strtoupper(trim($mac));
  119. $regex = "/^([A-F0-9]{12})$/";
  120. if (!preg_match($regex, $mac)) {
  121. return false;
  122. }
  123. return true;
  124. }
  125. /**
  126. * 检测设备mac是否重复
  127. */
  128. public function isStationMacDuplicate($mac, $id = '')
  129. {
  130. $cond = [['station_mac', '=', strtoupper(trim($mac))]];
  131. if ($id) {
  132. $cond[] = ['id', '<>', $id];
  133. }
  134. return $this->where($cond)->count();
  135. }
  136. /**
  137. * 导出基站列表
  138. *
  139. */
  140. public function getExportList()
  141. {
  142. $res = $this->dataRange()
  143. ->catchSearch()
  144. ->append(['area_id', 'province_name', 'city_name', 'district_name', 'school_name', 'access_name', 'building_name', 'floor_name', 'push_text', 'throttling_text', 'orientation_text'])
  145. ->order($this->aliasField('id'), 'desc')
  146. ->select();
  147. return $res;
  148. }
  149. }