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
27
28
29
30
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;
}