From aeb0696f457ca85b62d15ab6586c5779cf5cd97b Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Fri, 31 Jul 2026 16:56:21 +0800
Subject: [PATCH] feat(firewall): 添加访问日志功能

---
 src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java b/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java
index 70a3723..c7ac965 100644
--- a/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java
+++ b/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java
@@ -163,6 +163,36 @@
         return FebsUtil.view("modules/system/bsPayConfig");
     }
 
+    @GetMapping("firewallCountryList")
+    @RequiresPermissions("firewallCountry:view")
+    public String firewallCountryList() {
+        return FebsUtil.view("modules/system/firewallCountryList");
+    }
+
+    @GetMapping("firewallSiteList")
+    @RequiresPermissions("firewallSite:view")
+    public String firewallSiteList() {
+        return FebsUtil.view("modules/system/firewallSiteList");
+    }
+
+    @GetMapping("firewallCountryRuleList")
+    @RequiresPermissions("firewallCountryRule:view")
+    public String firewallCountryRuleList() {
+        return FebsUtil.view("modules/system/firewallCountryRuleList");
+    }
+
+    @GetMapping("firewallIpWhiteList")
+    @RequiresPermissions("firewallIpWhite:view")
+    public String firewallIpWhiteList() {
+        return FebsUtil.view("modules/system/firewallIpWhiteList");
+    }
+
+    @GetMapping("firewallAccessLogList")
+    @RequiresPermissions("firewallAccessLog:view")
+    public String firewallAccessLogList() {
+        return FebsUtil.view("modules/system/firewallAccessLogList");
+    }
+
     @GetMapping("tokenviewConfig")
     @RequiresPermissions("tokenviewConfig:update")
     public String tokenviewConfig(Model model) {

--
Gitblit v1.9.1