12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- namespace catchAdmin\device\model\get;
- use catchAdmin\permissions\model\SysConfig;
- use catchAdmin\system\model\SysDictData;
- use think\facade\Db;
- trait StationGet
- {
- /**
- * 获取导入时间(文本)
- */
- public function getCreateAtAttr($value)
- {
- if ($value) {
- return date('Y-m-d H:i:s', $value);
- } else {
- return '';
- }
- }
- public function getIsOnlineAttr($value){
- $value = strtotime($this->online_time);
- $int=time()-$value;
- if($int>300){
- return '0';
- }else{
- return '1';
- }
- }
- public function getOnlineTimeAttr($value){
- if($value){
- return $value;
- }
- return '-';
- }
- public function getIsOnlineTextAttr($value){
- $value = strtotime($this->online_time);
- $int=time()-$value;
- if($int>300){
- return '离线';
- }else{
- return '在线';
- }
- }
-
- }
|