lxw
2023-05-25 f3c27fb78447449a950ba73c5e72ceda64ad8a12
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
98
99
100
101
102
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
 
/**
 * 电池组属性参考线
 */
@TableName(schema = "db_battinf", value = "tb_battinf_guides")
public class BattGroupGuides {
 
    @TableId
    private Integer id;
 
    private Integer battGroupId;
 
    private Float monVol;
 
    private Float monTemp;
 
    private Float monRes;
 
    private Float leakVol;
 
    private Float curr;
 
    private Float monConnRes;
 
    private Float monConduct;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public Integer getBattGroupId() {
        return battGroupId;
    }
 
    public void setBattGroupId(Integer battGroupId) {
        this.battGroupId = battGroupId;
    }
 
    public Float getMonVol() {
        return monVol;
    }
 
    public void setMonVol(Float monVol) {
        this.monVol = monVol;
    }
 
    public Float getMonTemp() {
        return monTemp;
    }
 
    public void setMonTemp(Float monTemp) {
        this.monTemp = monTemp;
    }
 
    public Float getMonRes() {
        return monRes;
    }
 
    public void setMonRes(Float monRes) {
        this.monRes = monRes;
    }
 
    public Float getLeakVol() {
        return leakVol;
    }
 
    public void setLeakVol(Float leakVol) {
        this.leakVol = leakVol;
    }
 
    public Float getCurr() {
        return curr;
    }
 
    public void setCurr(Float curr) {
        this.curr = curr;
    }
 
    public Float getMonConnRes() {
        return monConnRes;
    }
 
    public void setMonConnRes(Float monConnRes) {
        this.monConnRes = monConnRes;
    }
 
    public Float getMonConduct() {
        return monConduct;
    }
 
    public void setMonConduct(Float monConduct) {
        this.monConduct = monConduct;
    }
}