liding
2026-06-02 c0ce5324f128a09e2cd42eece8c3120acea20830
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.ruoyi.alarm.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
@Data
@TableName("alarm_collection_interface")
public class AlarmCollectionInterface implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @ApiModelProperty(value = "接口ID")
    @TableId(type = IdType.AUTO)
    private Long interfaceId;
 
    @ApiModelProperty(value = "接口名称")
    private String interfaceName;
 
    @ApiModelProperty(value = "接口类型")
    private String interfaceType;
 
    @ApiModelProperty(value = "服务器地址")
    private String serverAddress;
 
    @ApiModelProperty(value = "采集频率")
    private String collectFreq;
 
    @ApiModelProperty(value = "连接状态")
    private String connectStatus;
 
    @ApiModelProperty(value = "创建时间")
    @TableField(fill = FieldFill.INSERT)
    private LocalDateTime createTime;
 
    @ApiModelProperty(value = "创建用户")
    @TableField(fill = FieldFill.INSERT)
    private Long createUser;
 
    @ApiModelProperty(value = "更新时间")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private LocalDateTime updateTime;
 
    @ApiModelProperty(value = "修改用户")
    @TableField(fill = FieldFill.INSERT_UPDATE)
    private Long updateUser;
 
    @ApiModelProperty(value = "租户ID")
    @TableField(fill = FieldFill.INSERT)
    private Long tenantId;
}