fg电池监控平台的达梦数据库版本
whycxzp
2024-11-11 f6cec8970fa54813be5e7eebf641253b7a304606
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package com.whyc.pojo;
 
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 com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
import java.io.Serializable;
 
/**
 * <p>
 * 
 * </p>
 *
 * @author xuzhongpei
 * @since 2021-12-15
 */
@Data
@EqualsAndHashCode(callSuper = false)
@Accessors(chain = true)
@TableName(schema ="db_param",value = "tb_dev_param")
@ApiModel(value="DevParam对象", description="")
@JsonIgnoreProperties(ignoreUnknown = true)
public class DevParam implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "num", type = IdType.AUTO)
    private Integer num;
 
    @TableField("dev_Id")
    private Integer devId;
 
    private Integer almId;
 
    private String almName;
 
    private Float almHighCoe;
 
    private Float almLowCoe;
 
    private Integer almHighLevel;
 
    private Integer almLowLevel;
 
    private Integer almHighEn;
 
    private Integer almLowEn;
 
    private String note;
 
    @TableField("alm_high_coe_upper")
    @ApiModelProperty(value = "上上限告警系数值")
    private Float almHighCoeUpper;
    @TableField("alm_low_coe_lower")
    @ApiModelProperty(value = "下下限告警系数值")
    private Float almLowCoeLower;
 
 
    @TableField("alm_high_coe_upper_en")
    @ApiModelProperty(value = "上上限使能[0-不启用  1-启用]")
    private Integer almHighCoeUpperEn;
    @TableField("alm_low_coe_lower_en")
    @ApiModelProperty(value = "下下限阈值使能[0-不启用  1-启用]")
    private Integer almLowCoeLowerEn;
    @ApiModelProperty("告警延时时长")
    private Integer almDelayTime;
    @ApiModelProperty("告警上上限级别")
    private Integer almHighLevelUpper;
    @ApiModelProperty("告警下下限级别")
    private Integer almLowLevelLower;
    @TableField(value = "stationname", exist = false)
    private String stationName;
 
    /**
     * 基准值
     */
    @TableField(exist = false)
    private Integer monCount;
    @TableField(exist = false)
    private Float monCapStd;
    @TableField(exist = false)
    private Float monVolStd;
    @TableField(exist = false)
    private String baseValue;
 
    @TableField(exist = false)
    private Float monResStd;
 
 
}