LocationLog.php 308 B

123456789101112131415161718
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class LocationLog extends Model
  5. {
  6. protected $guarded = [];
  7. const STATUS_OK = 1;
  8. const STATUS_PAUSE = 0;
  9. public static $statusMaps = [
  10. self::STATUS_OK => '正常',
  11. self::STATUS_PAUSE => '暂停'
  12. ];
  13. }