package com.whyc.pojo;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import org.apache.ibatis.type.Alias;
|
|
import java.util.Date;
|
|
/**
|
* TODO:电子2mw状态
|
*/
|
@Alias("Electric2MWState")
|
@TableName(schema = "db_experiment",value = "tb_electric2mw_state")
|
public class Electric2MWState {
|
|
Long num;
|
Integer electric2KWId;
|
Date recordTime;
|
Float branchDCVol ; // 分直流电压
|
Float branchDCCurr ; // 分直流电流
|
Float allDCVol ; // 总直流电压
|
Float allDCCurr ; // 总直流电流
|
Float stopChargeVolOne ; // 第1阶段充电终止电压
|
Float stopChargeVolTwo ; // 第2阶段充电终止电压
|
Float stopChargeVolThree ; // 第3阶段充电终止电压
|
Float stopChargeVolFour ; // 第4阶段充电终止电压
|
Float stopChargeVolFive ; // 第5阶段充电终止电压
|
Float controlAngle ; // 控制角
|
Float localGiveVol ; // 当前给定电压
|
Float VolSet ; // 电压设定值
|
Float localGiveCurr ; // 当前给定电流
|
Float CurrSet ; // 电流设定值
|
Float ChargeCurrOne ; // 第1阶段充电电流值
|
Float ChargeCurrTwo ; // 第2阶段充电电流值
|
Float ChargeCurrThree ; // 第3阶段充电电流值
|
Float ChargeCurrFour ; // 第4阶段充电电流值
|
Float ChargeCurrFive ; // 第5阶段充电电流值
|
Float consVolModeChargeCurr ; // 转为恒压模式充电电压值
|
String note ; // 备用
|
|
|
public Long getNum() {
|
return num;
|
}
|
|
public void setNum(Long num) {
|
this.num = num;
|
}
|
|
public Integer getElectric2KWId() {
|
return electric2KWId;
|
}
|
|
public void setElectric2KWId(Integer electric2KWId) {
|
this.electric2KWId = electric2KWId;
|
}
|
|
public Date getRecordTime() {
|
return recordTime;
|
}
|
|
public void setRecordTime(Date recordTime) {
|
this.recordTime = recordTime;
|
}
|
|
public Float getBranchDCVol() {
|
return branchDCVol;
|
}
|
|
public void setBranchDCVol(Float branchDCVol) {
|
this.branchDCVol = branchDCVol;
|
}
|
|
public Float getBranchDCCurr() {
|
return branchDCCurr;
|
}
|
|
public void setBranchDCCurr(Float branchDCCurr) {
|
this.branchDCCurr = branchDCCurr;
|
}
|
|
public Float getAllDCVol() {
|
return allDCVol;
|
}
|
|
public void setAllDCVol(Float allDCVol) {
|
this.allDCVol = allDCVol;
|
}
|
|
public Float getAllDCCurr() {
|
return allDCCurr;
|
}
|
|
public void setAllDCCurr(Float allDCCurr) {
|
this.allDCCurr = allDCCurr;
|
}
|
|
public Float getStopChargeVolOne() {
|
return stopChargeVolOne;
|
}
|
|
public void setStopChargeVolOne(Float stopChargeVolOne) {
|
this.stopChargeVolOne = stopChargeVolOne;
|
}
|
|
public Float getStopChargeVolTwo() {
|
return stopChargeVolTwo;
|
}
|
|
public void setStopChargeVolTwo(Float stopChargeVolTwo) {
|
this.stopChargeVolTwo = stopChargeVolTwo;
|
}
|
|
public Float getStopChargeVolThree() {
|
return stopChargeVolThree;
|
}
|
|
public void setStopChargeVolThree(Float stopChargeVolThree) {
|
this.stopChargeVolThree = stopChargeVolThree;
|
}
|
|
public Float getStopChargeVolFour() {
|
return stopChargeVolFour;
|
}
|
|
public void setStopChargeVolFour(Float stopChargeVolFour) {
|
this.stopChargeVolFour = stopChargeVolFour;
|
}
|
|
public Float getStopChargeVolFive() {
|
return stopChargeVolFive;
|
}
|
|
public void setStopChargeVolFive(Float stopChargeVolFive) {
|
this.stopChargeVolFive = stopChargeVolFive;
|
}
|
|
public Float getControlAngle() {
|
return controlAngle;
|
}
|
|
public void setControlAngle(Float controlAngle) {
|
this.controlAngle = controlAngle;
|
}
|
|
public Float getLocalGiveVol() {
|
return localGiveVol;
|
}
|
|
public void setLocalGiveVol(Float localGiveVol) {
|
this.localGiveVol = localGiveVol;
|
}
|
|
public Float getVolSet() {
|
return VolSet;
|
}
|
|
public void setVolSet(Float volSet) {
|
VolSet = volSet;
|
}
|
|
public Float getLocalGiveCurr() {
|
return localGiveCurr;
|
}
|
|
public void setLocalGiveCurr(Float localGiveCurr) {
|
this.localGiveCurr = localGiveCurr;
|
}
|
|
public Float getCurrSet() {
|
return CurrSet;
|
}
|
|
public void setCurrSet(Float currSet) {
|
CurrSet = currSet;
|
}
|
|
public Float getChargeCurrOne() {
|
return ChargeCurrOne;
|
}
|
|
public void setChargeCurrOne(Float chargeCurrOne) {
|
ChargeCurrOne = chargeCurrOne;
|
}
|
|
public Float getChargeCurrTwo() {
|
return ChargeCurrTwo;
|
}
|
|
public void setChargeCurrTwo(Float chargeCurrTwo) {
|
ChargeCurrTwo = chargeCurrTwo;
|
}
|
|
public Float getChargeCurrThree() {
|
return ChargeCurrThree;
|
}
|
|
public void setChargeCurrThree(Float chargeCurrThree) {
|
ChargeCurrThree = chargeCurrThree;
|
}
|
|
public Float getChargeCurrFour() {
|
return ChargeCurrFour;
|
}
|
|
public void setChargeCurrFour(Float chargeCurrFour) {
|
ChargeCurrFour = chargeCurrFour;
|
}
|
|
public Float getChargeCurrFive() {
|
return ChargeCurrFive;
|
}
|
|
public void setChargeCurrFive(Float chargeCurrFive) {
|
ChargeCurrFive = chargeCurrFive;
|
}
|
|
public Float getConsVolModeChargeCurr() {
|
return consVolModeChargeCurr;
|
}
|
|
public void setConsVolModeChargeCurr(Float consVolModeChargeCurr) {
|
this.consVolModeChargeCurr = consVolModeChargeCurr;
|
}
|
|
public String getNote() {
|
return note;
|
}
|
|
public void setNote(String note) {
|
this.note = note;
|
}
|
}
|