MaintainLog.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. namespace catchAdmin\logs\model;
  3. use catcher\base\CatchModel as Model;
  4. class MaintainLog extends Model
  5. {
  6. // 表名
  7. public $name = 'maintain_log';
  8. // 数据库字段映射
  9. public $field = array(
  10. 'id',
  11. // 设备编号
  12. 'device_number',
  13. // 经度
  14. 'longitude',
  15. // 纬度
  16. 'latitude',
  17. // 设备状态
  18. 'device_state',
  19. // 运行时间
  20. 'online_time',
  21. // 维护信息
  22. 'info',
  23. // 创建人ID
  24. 'creator_id',
  25. // 创建时间
  26. 'created_at',
  27. // 更新时间
  28. 'updated_at',
  29. // 软删除
  30. 'deleted_at',
  31. );
  32. public function getList()
  33. {
  34. return $this->catchSearch()
  35. ->append(['run_time'])
  36. ->order($this->aliasField('id'), 'desc')
  37. ->paginate();
  38. }
  39. public function searchDeviceNumberAttr($query, $value, $data)
  40. {
  41. return $query->where('device_number',$value);
  42. }
  43. public function getOnlineTimeAttr($value)
  44. {
  45. return $value ? date('Y-m-d H:i:s',$value) : '';
  46. }
  47. /**
  48. * 获取部门名称(文本)
  49. */
  50. public function getRunTimeAttr()
  51. {
  52. return 1200;
  53. }
  54. }