SsNode.php 539 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. /**
  5. * SS节点信息
  6. * Class SsNode
  7. * @package App\Http\Models
  8. */
  9. class SsNode extends Model
  10. {
  11. protected $table = 'ss_node';
  12. protected $primaryKey = 'id';
  13. protected $fillable = [
  14. 'name',
  15. 'server',
  16. 'method',
  17. 'custom_method',
  18. 'protocol',
  19. 'protocol_param',
  20. 'obfs',
  21. 'obfs_param',
  22. 'traffic_rate',
  23. 'bandwidth',
  24. 'transfer',
  25. 'sort',
  26. 'status'
  27. ];
  28. }