whycxzp
2025-03-29 c57812396fb34070b6970d08457e090a1b6bcc47
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
package com.whyc.pojo.db_alarm;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.ToString;
 
import java.util.Date;
 
/**
 * 电池机房温度告警,八个电池机房
 */
@ApiModel(value="电池机房温度告警")
@TableName(schema = "db_alarm",value = "tb_alarm_temp_alarm")
@Data
@ToString
public class BattStationTempAlarm {
 
    @TableId(type = IdType.AUTO)
    private Long id;
 
    private Integer stationId;
 
    private Integer battGroupId;
 
    private Float temp;
 
    private Integer level;
 
    /*@ApiModelProperty("温度坐标")
    private String point;
 
    @ApiModelProperty("分辨率,格式示例:384*288")
    private String pixel;
 
    @ApiModelProperty("单体编号")
    private Integer monNum;*/
 
    private Date startTime;
 
    private Date endTime;
 
    @TableField(exist = false)
    private String battGroupName;
 
    @TableField(exist = false)
    private String stationName;
 
    @TableField(exist = false)
    private String powerName;
 
 
}