whycxzp
2025-03-24 a9a9e8eea1a9d254b631164d14fe164671e9c6e4
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
package com.whyc.pojo.db_batt;
 
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 lombok.ToString;
 
@TableName(schema = "db_batt",value = "batt_inf")
@ToString
public class BattInf {
 
    @TableId(value = "binf_id", type = IdType.AUTO)
    private Integer battGroupId;
 
    @TableField("binf_name")
    private String battGroupName;
 
    private Integer monCount;
 
    private Float monVol;
    private Float monCap;
    private Float monRes;
    private Float loadCurr;
 
    public Integer getBattGroupId() {
        return battGroupId;
    }
 
    public void setBattGroupId(Integer battGroupId) {
        this.battGroupId = battGroupId;
    }
 
    public String getBattGroupName() {
        return battGroupName;
    }
 
    public void setBattGroupName(String battGroupName) {
        this.battGroupName = battGroupName;
    }
 
    public Integer getMonCount() {
        return monCount;
    }
 
    public void setMonCount(Integer monCount) {
        this.monCount = monCount;
    }
 
    public Float getMonVol() {
        return monVol;
    }
 
    public void setMonVol(Float monVol) {
        this.monVol = monVol;
    }
 
    public Float getMonCap() {
        return monCap;
    }
 
    public void setMonCap(Float monCap) {
        this.monCap = monCap;
    }
 
    public Float getMonRes() {
        return monRes;
    }
 
    public void setMonRes(Float monRes) {
        this.monRes = monRes;
    }
 
    public Float getLoadCurr() {
        return loadCurr;
    }
 
    public void setLoadCurr(Float loadCurr) {
        this.loadCurr = loadCurr;
    }
}