Config.php 315 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * 系统配置
  6. */
  7. class Config extends Model {
  8. public $timestamps = false;
  9. public $incrementing = false;
  10. protected $table = 'config';
  11. protected $primaryKey = 'name';
  12. protected $keyType = 'string';
  13. protected $fillable = ['value'];
  14. }