123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- namespace App\Models;
- use Illuminate\Database\Eloquent\Builder;
- use Illuminate\Database\Eloquent\Model;
- /**
- * SS节点信息
- *
- * @property int $id
- * @property int $type 服务类型:1-ShadowsocksR、2-V2ray
- * @property string $name 名称
- * @property string $country_code 国家代码
- * @property string|null $server 服务器域名地址
- * @property string|null $ip 服务器IPV4地址
- * @property string|null $ipv6 服务器IPV6地址
- * @property string|null $relay_server 中转地址
- * @property int|null $relay_port 中转端口
- * @property \App\Models\Level|null $level 等级:0-无等级,全部可见
- * @property int $speed_limit 节点限速,为0表示不限速,单位Byte
- * @property int $client_limit 设备数限制
- * @property string|null $description 节点简单描述
- * @property string $method 加密方式
- * @property string $protocol 协议
- * @property string|null $protocol_param 协议参数
- * @property string $obfs 混淆
- * @property string|null $obfs_param 混淆参数
- * @property float $traffic_rate 流量比率
- * @property int $is_subscribe 是否允许用户订阅该节点:0-否、1-是
- * @property int $is_ddns 是否使用DDNS:0-否、1-是
- * @property int $is_relay 是否中转节点:0-否、1-是
- * @property int $is_udp 是否启用UDP:0-不启用、1-启用
- * @property int $ssh_port SSH端口
- * @property int $detection_type 节点检测: 0-关闭、1-只检测TCP、2-只检测ICMP、3-检测全部
- * @property int $compatible 兼容SS
- * @property int $single 启用单端口功能:0-否、1-是
- * @property int|null $port 单端口的端口号或连接端口号
- * @property string|null $passwd 单端口的连接密码
- * @property int $sort 排序值,值越大越靠前显示
- * @property int $status 状态:0-维护、1-正常
- * @property int $v2_alter_id V2Ray额外ID
- * @property int $v2_port V2Ray服务端口
- * @property string $v2_method V2Ray加密方式
- * @property string $v2_net V2Ray传输协议
- * @property string $v2_type V2Ray伪装类型
- * @property string $v2_host V2Ray伪装的域名
- * @property string $v2_path V2Ray的WS/H2路径
- * @property int $v2_tls V2Ray后端TLS:0-未开启、1-开启
- * @property int $v2_tls_insecure 是否允许不安全连接
- * @property int $v2_tls_insecure_ciphers 是否允许不安全的加密方式
- * @property \Illuminate\Support\Carbon $created_at
- * @property \Illuminate\Support\Carbon $updated_at
- * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\SsNodeLabel[] $label
- * @property-read int|null $label_count
- * @method static Builder|SsNode newModelQuery()
- * @method static Builder|SsNode newQuery()
- * @method static Builder|SsNode query()
- * @method static Builder|SsNode whereClientLimit($value)
- * @method static Builder|SsNode whereCompatible($value)
- * @method static Builder|SsNode whereCountryCode($value)
- * @method static Builder|SsNode whereCreatedAt($value)
- * @method static Builder|SsNode whereDescription($value)
- * @method static Builder|SsNode whereDetectionType($value)
- * @method static Builder|SsNode whereId($value)
- * @method static Builder|SsNode whereIp($value)
- * @method static Builder|SsNode whereIpv6($value)
- * @method static Builder|SsNode whereIsDdns($value)
- * @method static Builder|SsNode whereIsRelay($value)
- * @method static Builder|SsNode whereIsSubscribe($value)
- * @method static Builder|SsNode whereIsUdp($value)
- * @method static Builder|SsNode whereLevel($value)
- * @method static Builder|SsNode whereMethod($value)
- * @method static Builder|SsNode whereName($value)
- * @method static Builder|SsNode whereObfs($value)
- * @method static Builder|SsNode whereObfsParam($value)
- * @method static Builder|SsNode wherePasswd($value)
- * @method static Builder|SsNode wherePort($value)
- * @method static Builder|SsNode whereProtocol($value)
- * @method static Builder|SsNode whereProtocolParam($value)
- * @method static Builder|SsNode whereRelayPort($value)
- * @method static Builder|SsNode whereRelayServer($value)
- * @method static Builder|SsNode whereServer($value)
- * @method static Builder|SsNode whereSingle($value)
- * @method static Builder|SsNode whereSort($value)
- * @method static Builder|SsNode whereSpeedLimit($value)
- * @method static Builder|SsNode whereSshPort($value)
- * @method static Builder|SsNode whereStatus($value)
- * @method static Builder|SsNode whereTrafficRate($value)
- * @method static Builder|SsNode whereType($value)
- * @method static Builder|SsNode whereUpdatedAt($value)
- * @method static Builder|SsNode whereV2AlterId($value)
- * @method static Builder|SsNode whereV2Host($value)
- * @method static Builder|SsNode whereV2Method($value)
- * @method static Builder|SsNode whereV2Net($value)
- * @method static Builder|SsNode whereV2Path($value)
- * @method static Builder|SsNode whereV2Port($value)
- * @method static Builder|SsNode whereV2Tls($value)
- * @method static Builder|SsNode whereV2TlsInsecure($value)
- * @method static Builder|SsNode whereV2TlsInsecureCiphers($value)
- * @method static Builder|SsNode whereV2Type($value)
- * @mixin \Eloquent
- */
- class SsNode extends Model {
- protected $table = 'ss_node';
- protected $primaryKey = 'id';
- function label() {
- return $this->hasMany(SsNodeLabel::class, 'node_id', 'id');
- }
- function getLevel() {
- return $this->hasOne(Level::class, 'level', 'level');
- }
- }
|