SsNodeInfo.php 948 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. namespace App\Http\Models;
  3. use Eloquent;
  4. use Illuminate\Database\Eloquent\Builder;
  5. use Illuminate\Database\Eloquent\Model;
  6. /**
  7. * SS节点负载情况
  8. *
  9. * @property int $id
  10. * @property int $node_id 节点ID
  11. * @property int $uptime 后端存活时长,单位秒
  12. * @property string $load 负载
  13. * @property int $log_time 记录时间
  14. * @method static Builder|SsNodeInfo newModelQuery()
  15. * @method static Builder|SsNodeInfo newQuery()
  16. * @method static Builder|SsNodeInfo query()
  17. * @method static Builder|SsNodeInfo whereId($value)
  18. * @method static Builder|SsNodeInfo whereLoad($value)
  19. * @method static Builder|SsNodeInfo whereLogTime($value)
  20. * @method static Builder|SsNodeInfo whereNodeId($value)
  21. * @method static Builder|SsNodeInfo whereUptime($value)
  22. * @mixin Eloquent
  23. */
  24. class SsNodeInfo extends Model {
  25. public $timestamps = false;
  26. protected $table = 'ss_node_info';
  27. protected $primaryKey = 'id';
  28. }