SsNodeIp.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. namespace App\Http\Models;
  3. use Eloquent;
  4. use Illuminate\Database\Eloquent\Builder;
  5. use Illuminate\Database\Eloquent\Model;
  6. use Illuminate\Support\Carbon;
  7. /**
  8. * SS节点在线IP信息
  9. * Class SsNodeIp
  10. *
  11. * @package App\Http\Models
  12. * @mixin Eloquent
  13. * @property int $id
  14. * @property int $node_id 节点ID
  15. * @property int $user_id 用户ID
  16. * @property int $port 端口
  17. * @property string $type 类型:all、tcp、udp
  18. * @property string|null $ip 连接IP:每个IP用,号隔开
  19. * @property Carbon $created_at 上报时间
  20. * @property-read SsNode $node
  21. * @property-read User $user
  22. * @method static Builder|SsNodeIp newModelQuery()
  23. * @method static Builder|SsNodeIp newQuery()
  24. * @method static Builder|SsNodeIp query()
  25. * @method static Builder|SsNodeIp whereCreatedAt($value)
  26. * @method static Builder|SsNodeIp whereId($value)
  27. * @method static Builder|SsNodeIp whereIp($value)
  28. * @method static Builder|SsNodeIp whereNodeId($value)
  29. * @method static Builder|SsNodeIp wherePort($value)
  30. * @method static Builder|SsNodeIp whereType($value)
  31. * @method static Builder|SsNodeIp whereUserId($value)
  32. */
  33. class SsNodeIp extends Model
  34. {
  35. protected $table = 'ss_node_ip';
  36. protected $primaryKey = 'id';
  37. function node()
  38. {
  39. return $this->belongsTo(SsNode::class, 'node_id', 'id');
  40. }
  41. function user()
  42. {
  43. return $this->belongsTo(User::class, 'port', 'port');
  44. }
  45. }