StationGet.php 996 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php
  2. namespace catchAdmin\device\model\get;
  3. use catchAdmin\permissions\model\SysConfig;
  4. use catchAdmin\system\model\SysDictData;
  5. use think\facade\Db;
  6. trait StationGet
  7. {
  8. /**
  9. * 获取导入时间(文本)
  10. */
  11. public function getCreateAtAttr($value)
  12. {
  13. if ($value) {
  14. return date('Y-m-d H:i:s', $value);
  15. } else {
  16. return '';
  17. }
  18. }
  19. public function getIsOnlineAttr($value){
  20. $value = strtotime($this->online_time);
  21. $int=time()-$value;
  22. if($int>300){
  23. return '0';
  24. }else{
  25. return '1';
  26. }
  27. }
  28. public function getOnlineTimeAttr($value){
  29. if($value){
  30. return $value;
  31. }
  32. return '-';
  33. }
  34. public function getIsOnlineTextAttr($value){
  35. $value = strtotime($this->online_time);
  36. $int=time()-$value;
  37. if($int>300){
  38. return '离线';
  39. }else{
  40. return '在线';
  41. }
  42. }
  43. }