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);
|
}
|