StationGet.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. $state=$this->online_state;
  21. if($state=='1'){
  22. return '1';
  23. }
  24. $value = strtotime($this->online_time);
  25. $int=time()-$value;
  26. if($int>300){
  27. return '0';
  28. }else{
  29. return '1';
  30. }
  31. }
  32. public function getOnlineTimeAttr($value){
  33. $state=$this->online_state;
  34. if($state=='1'){
  35. return date('Y-m-d H:i:s');
  36. }
  37. if($value){
  38. return $value;
  39. }
  40. return '-';
  41. }
  42. public function getIsOnlineTextAttr($value){
  43. $state=$this->online_state;
  44. if($state=='1'){
  45. return '在线';
  46. }
  47. $value = strtotime($this->online_time);
  48. $int=time()-$value;
  49. if($int>300){
  50. return '离线';
  51. }else{
  52. return '在线';
  53. }
  54. }
  55. }