SystemL.php 806 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. class SystemL extends Model
  5. {
  6. protected $table = "system_L"; //指定表
  7. const CREATED_AT = null;
  8. const UPDATED_AT = null;
  9. protected $dateFormat = 'U';
  10. const run = '压机上升'; // 运行时间/次数
  11. const work = '小车前进'; // 工作时间/次数 不用了
  12. const stop = '急停'; // 故障时间/次数
  13. const standBy = '压机下降';// 待机时间/次数
  14. public static $device = [
  15. "2号热压机" => "01401422102400001960",
  16. "1号热压机" => "01401422100800000103",
  17. "6号热压机" => "01401422100800008976",
  18. "5号热压机" => "01401422100800000342"
  19. ];
  20. //高德地图调用密钥
  21. const GaoDeMapKey = '3668a7fb4ad1f7d7b3efa0ead05e57a3';
  22. }