package cc.mrbird.febs.firewall.entity; import cc.mrbird.febs.common.entity.BaseEntity; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; import lombok.EqualsAndHashCode; /** * 防火墙国家白名单规则表 * * @author auto-generated * @date 2026-07-31 */ @Data @EqualsAndHashCode(callSuper = true) @TableName("firewall_country_rule") public class FirewallCountryRule extends BaseEntity { /** 站点ID */ private Long siteId; /** 国家编码(ISO 3166-1 alpha-2,如 JP/US/SG) */ private String countryCode; /** 国家名称 */ private String countryName; /** 状态:1-启用,0-禁用 */ private Integer enabled; }