whycxzp
2025-06-11 1442b7f8e471343d86f7989e6916f01fe5cad132
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
55
56
57
58
59
60
package com.whyc.pojo.web_site;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import com.whyc.pojo.db_user.Baojigroup;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.ToString;
 
import java.util.Date;
 
@ToString
@Data
@TableName(schema = "web_site",value ="tb_alarm_inspection")
@ApiModel("告警巡检实时表")
public class AlarmInspection {
 
    private Long id;
 
    private Integer stationId;
 
    private String stationName;
 
    private Integer powerId;
 
    private String powerName;
 
    private Integer devId;
 
    private String devName;
 
    private Integer battGroupId;
 
    private String battGroupName;
    @ApiModelProperty("告警属于哪种设备.1-电源,2-设备,3-电池")
    private Integer type;
 
    @ApiModelProperty("告警表内主键id")
    private Long almNum;
    @ApiModelProperty("告警id,其中电池告警中代表alm_signal_id")
    private int almId;
 
    @ApiModelProperty("电池告警的告警id字段,保留")
    private Integer almIdOrigin;
 
    private Integer almLevel;
    private Date almStartTime;
    @ApiModelProperty("是否还存在.1-存在,0-不存在")
    private Integer isExist;
 
    private Date createTime;
 
    @TableField(exist = false)
    private Baojigroup baoJiGroup;
 
    @TableField(exist = false)
    private AlarmDiagnosis diagnosis;
 
}