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
31
32
33
34
35
| 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;
|
| import java.util.Date;
|
| /**
| * 防火墙IP白名单表
| *
| * @author auto-generated
| * @date 2026-07-31
| */
| @Data
| @EqualsAndHashCode(callSuper = true)
| @TableName("firewall_ip_white")
| public class FirewallIpWhite extends BaseEntity {
|
| /** 站点ID */
| private Long siteId;
|
| /** IP地址 */
| private String ip;
|
| /** 备注 */
| private String remark;
|
| /** 过期时间 */
| private Date expireTime;
|
| /** 状态:1-启用,0-禁用 */
| private Integer enabled;
| }
|
|