package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
@TableName(schema = "db_ram_db",value ="tb_fbs9100_battparam")
|
public class FBS9100BattParam {
|
|
private Long num;
|
private String devIp;
|
private Long devId;
|
private Integer opCmd;
|
@TableField("STD_CAP")
|
private Integer stdCap;
|
@TableField("STD_RES")
|
private Integer stdRes;
|
@TableField("BattGroupCount")
|
private Integer battGroupCount;
|
@TableField("EachGroupBattCount")
|
private Integer eachGroupBattCount;
|
@TableField("MonomerVol")
|
private Float monomerVol;
|
@TableField("GroupVol")
|
private Float groupVol;
|
@TableField("BattTemp")
|
private Float battTemp;
|
@TableField("FloatChargeVol")
|
private Float floatChargeVol;
|
@TableField("FloatChargeCurr")
|
private Float floatChargeCurr;
|
@TableField("OnlineVolLow")
|
private Float onlineVolLow;
|
@TableField("GroupConnType")
|
private Integer groupConnType;
|
@TableField("BattGroupCountSum")
|
private Integer battGroupCountSum;
|
@TableField("LiBattGroupCount")
|
private Integer liBattGroupCount;
|
@TableField("LiEachGroupBattCount")
|
private Integer liEachGroupBattCount;
|
@TableField("juncharge_vol")
|
private Float junChargeVol;
|
|
public Long getNum() {
|
return num;
|
}
|
|
public void setNum(Long num) {
|
this.num = num;
|
}
|
|
public String getDevIp() {
|
return devIp;
|
}
|
|
public void setDevIp(String devIp) {
|
this.devIp = devIp;
|
}
|
|
public Long getDevId() {
|
return devId;
|
}
|
|
public void setDevId(Long devId) {
|
this.devId = devId;
|
}
|
|
public Integer getOpCmd() {
|
return opCmd;
|
}
|
|
public void setOpCmd(Integer opCmd) {
|
this.opCmd = opCmd;
|
}
|
|
public Integer getStdCap() {
|
return stdCap;
|
}
|
|
public void setStdCap(Integer stdCap) {
|
this.stdCap = stdCap;
|
}
|
|
public Integer getStdRes() {
|
return stdRes;
|
}
|
|
public void setStdRes(Integer stdRes) {
|
this.stdRes = stdRes;
|
}
|
|
public Integer getBattGroupCount() {
|
return battGroupCount;
|
}
|
|
public void setBattGroupCount(Integer battGroupCount) {
|
this.battGroupCount = battGroupCount;
|
}
|
|
public Integer getEachGroupBattCount() {
|
return eachGroupBattCount;
|
}
|
|
public void setEachGroupBattCount(Integer eachGroupBattCount) {
|
this.eachGroupBattCount = eachGroupBattCount;
|
}
|
|
public Float getMonomerVol() {
|
return monomerVol;
|
}
|
|
public void setMonomerVol(Float monomerVol) {
|
this.monomerVol = monomerVol;
|
}
|
|
public Float getGroupVol() {
|
return groupVol;
|
}
|
|
public void setGroupVol(Float groupVol) {
|
this.groupVol = groupVol;
|
}
|
|
public Float getBattTemp() {
|
return battTemp;
|
}
|
|
public void setBattTemp(Float battTemp) {
|
this.battTemp = battTemp;
|
}
|
|
public Float getFloatChargeVol() {
|
return floatChargeVol;
|
}
|
|
public void setFloatChargeVol(Float floatChargeVol) {
|
this.floatChargeVol = floatChargeVol;
|
}
|
|
public Float getFloatChargeCurr() {
|
return floatChargeCurr;
|
}
|
|
public void setFloatChargeCurr(Float floatChargeCurr) {
|
this.floatChargeCurr = floatChargeCurr;
|
}
|
|
public Float getOnlineVolLow() {
|
return onlineVolLow;
|
}
|
|
public void setOnlineVolLow(Float onlineVolLow) {
|
this.onlineVolLow = onlineVolLow;
|
}
|
|
public Integer getGroupConnType() {
|
return groupConnType;
|
}
|
|
public void setGroupConnType(Integer groupConnType) {
|
this.groupConnType = groupConnType;
|
}
|
|
public Integer getBattGroupCountSum() {
|
return battGroupCountSum;
|
}
|
|
public void setBattGroupCountSum(Integer battGroupCountSum) {
|
this.battGroupCountSum = battGroupCountSum;
|
}
|
|
public Integer getLiBattGroupCount() {
|
return liBattGroupCount;
|
}
|
|
public void setLiBattGroupCount(Integer liBattGroupCount) {
|
this.liBattGroupCount = liBattGroupCount;
|
}
|
|
public Integer getLiEachGroupBattCount() {
|
return liEachGroupBattCount;
|
}
|
|
public void setLiEachGroupBattCount(Integer liEachGroupBattCount) {
|
this.liEachGroupBattCount = liEachGroupBattCount;
|
}
|
|
public Float getJunChargeVol() {
|
return junChargeVol;
|
}
|
|
public void setJunChargeVol(Float junChargeVol) {
|
this.junChargeVol = junChargeVol;
|
}
|
}
|