From 286ec9ef4e04ed80eb18fe41c29bbaa41ede37d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BF=83=E9=9A=A8=E7=B7=A3=E5=8B=95?= Date: Tue, 26 Aug 2025 15:48:00 +0800 Subject: [PATCH] v2.6.7 --- web/assets/js/model/dbinbound.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/assets/js/model/dbinbound.js b/web/assets/js/model/dbinbound.js index 45301ddd..ddcfb31c 100644 --- a/web/assets/js/model/dbinbound.js +++ b/web/assets/js/model/dbinbound.js @@ -9,6 +9,9 @@ class DBInbound { this.remark = ""; this.enable = true; this.expiryTime = 0; + + // 新增:入站级设备限制(0 表示不限制) + this.deviceLimit = 0; this.listen = ""; this.port = 0; @@ -145,4 +148,4 @@ class DBInbound { const inbound = this.toInbound(); return inbound.genInboundLinks(this.remark, remarkModel); } -} \ No newline at end of file +}