LocationLog.php 269 B

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