This commit is contained in:
心隨緣動 2025-08-26 15:48:00 +08:00 committed by GitHub
parent f159f3c63e
commit 286ec9ef4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,6 +9,9 @@ class DBInbound {
this.remark = ""; this.remark = "";
this.enable = true; this.enable = true;
this.expiryTime = 0; this.expiryTime = 0;
// 新增入站级设备限制0 表示不限制)
this.deviceLimit = 0;
this.listen = ""; this.listen = "";
this.port = 0; this.port = 0;
@ -145,4 +148,4 @@ class DBInbound {
const inbound = this.toInbound(); const inbound = this.toInbound();
return inbound.genInboundLinks(this.remark, remarkModel); return inbound.genInboundLinks(this.remark, remarkModel);
} }
} }