VrHotspot.php 307 B

123456789101112131415161718192021
  1. <?php
  2. declare(strict_types=1);
  3. namespace app\model;
  4. use think\Model;
  5. /**
  6. * @mixin \think\Model
  7. */
  8. class VrHotspot extends Model
  9. {
  10. /**
  11. * 处理
  12. */
  13. public function getAddtimeAttr($value){
  14. if (empty($value)) return $value;
  15. return date('Y-m-d H:i:s',(int)$value);
  16. }
  17. }