Station.php 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. class Station extends Model
  7. {
  8. use DataRangScopeTrait;
  9. use StationGet;
  10. // protected $connection = 'oracle';
  11. // 表名
  12. public $name = 'stations';
  13. // 数据库字段映射
  14. public $field = array(
  15. 'id',
  16. // 基站Mac
  17. 'mac',
  18. // 基站简码
  19. 'shortcode',
  20. // 基站名称
  21. 'name',
  22. // 基站型号
  23. 'model',
  24. // 基站序列号
  25. 'serial_number',
  26. // 所属部门
  27. 'department_id',
  28. // 版本号
  29. 'version',
  30. // 开局状态
  31. 'open_status',
  32. // SIM卡号
  33. 'sim_no',
  34. // 经度
  35. 'longitude',
  36. // 纬度
  37. 'latitude',
  38. // 在线时间
  39. 'online_time',
  40. // 安装地址
  41. 'address',
  42. // 备注
  43. 'remark',
  44. // 开局时间
  45. 'open_time',
  46. // 开局用户
  47. 'open_user_id',
  48. // 创建人ID
  49. 'creator_id',
  50. // 创建时间
  51. 'created_at',
  52. // 更新时间
  53. 'updated_at',
  54. // 软删除
  55. 'deleted_at',
  56. );
  57. /**
  58. * 获取基站列表
  59. */
  60. public function getStationList($field, $order)
  61. {
  62. $res = $this->dataRange()
  63. ->append(['depart_name', 'net_state', 'open_user_name', 'creator_name', 'model_text'])
  64. ->order($this->aliasField($field), $order)
  65. ->paginate();
  66. return $res;
  67. }
  68. /**
  69. * 获取基站导出列表
  70. */
  71. public function getStationExportList()
  72. {
  73. $res = $this->dataRange()
  74. ->catchSearch()
  75. ->append(['depart_name', 'net_state','open_user_name', 'creator_name', 'model_text'])
  76. ->order($this->aliasField('id'), 'desc')
  77. ->select();
  78. return $res;
  79. }
  80. }