<?php namespace App\Models; class LocationLog extends Model { protected $guarded = []; const STATUS_OK = 1; const STATUS_PAUSE = 0; public static $statusMaps = [ self::STATUS_OK => '正常', self::STATUS_PAUSE => '暂停' ]; }