Administrator
5 hours ago f1cf8741bad27ff99e644ad9cfa5458c78d79501
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package cc.mrbird.febs.firewall.mapper;
 
import cc.mrbird.febs.firewall.entity.FirewallCountryRule;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 防火墙国家规则 Mapper
 *
 * @author auto-generated
 * @date 2026-07-31
 */
@Mapper
public interface FirewallCountryRuleMapper extends BaseMapper<FirewallCountryRule> {
 
    /**
     * 查询站点下所有启用的国家编码
     *
     * @param siteId 站点ID
     * @return 国家编码列表
     */
    List<String> selectEnableCountry(@Param("siteId") Long siteId);
}