package cn.flightfeather.supervision.domain.entity; import java.util.Date; import javax.persistence.*; @Table(name = "voc_t_hour_value") public class VOCHourValue { @Id @Column(name = "VOC_ID") private Integer vocId; /** * 设备编号 */ @Column(name = "VOC_Stat_Code") private String vocStatCode; @Column(name = "VOC_Create_Time") private Date vocCreateTime; @Column(name = "VOC_Data_Time") private Date vocDataTime; /** * VOC浓度 mg/m3 */ @Column(name = "VOC_Value") private Double vocValue; /** * e70201 风机电流-A */ @Column(name = "VOC_Fan_Electricity_1") private Double vocFanElectricity1; /** * e70202 风机电流-A */ @Column(name = "VOC_Fan_Electricity_2") private Double vocFanElectricity2; /** * e70203 风机电流-A */ @Column(name = "VOC_Fan_Electricity_3") private Double vocFanElectricity3; /** * e70204 风机电流-A */ @Column(name = "VOC_Fan_Electricity_4") private Double vocFanElectricity4; /** * e70205 风机电流-A */ @Column(name = "VOC_Fan_Electricity_5") private Double vocFanElectricity5; /** * e70206 风机电流-A */ @Column(name = "VOC_Fan_Electricity_6") private Double vocFanElectricity6; /** * @return VOC_ID */ public Integer getVocId() { return vocId; } /** * @param vocId */ public void setVocId(Integer vocId) { this.vocId = vocId; } /** * 获取设备编号 * * @return VOC_Stat_Code - 设备编号 */ public String getVocStatCode() { return vocStatCode; } /** * 设置设备编号 * * @param vocStatCode 设备编号 */ public void setVocStatCode(String vocStatCode) { this.vocStatCode = vocStatCode == null ? null : vocStatCode.trim(); } /** * @return VOC_Create_Time */ public Date getVocCreateTime() { return vocCreateTime; } /** * @param vocCreateTime */ public void setVocCreateTime(Date vocCreateTime) { this.vocCreateTime = vocCreateTime; } /** * @return VOC_Data_Time */ public Date getVocDataTime() { return vocDataTime; } /** * @param vocDataTime */ public void setVocDataTime(Date vocDataTime) { this.vocDataTime = vocDataTime; } /** * 获取VOC浓度 * * @return VOC_Value - VOC浓度 */ public Double getVocValue() { return vocValue; } /** * 设置VOC浓度 * * @param vocValue VOC浓度 */ public void setVocValue(Double vocValue) { this.vocValue = vocValue; } /** * 获取e70201 风机电流-A * * @return VOC_Fan_Electricity_1 - e70201 风机电流-A */ public Double getVocFanElectricity1() { return vocFanElectricity1; } /** * 设置e70201 风机电流-A * * @param vocFanElectricity1 e70201 风机电流-A */ public void setVocFanElectricity1(Double vocFanElectricity1) { this.vocFanElectricity1 = vocFanElectricity1; } /** * 获取e70202 风机电流-A * * @return VOC_Fan_Electricity_2 - e70202 风机电流-A */ public Double getVocFanElectricity2() { return vocFanElectricity2; } /** * 设置e70202 风机电流-A * * @param vocFanElectricity2 e70202 风机电流-A */ public void setVocFanElectricity2(Double vocFanElectricity2) { this.vocFanElectricity2 = vocFanElectricity2; } /** * 获取e70203 风机电流-A * * @return VOC_Fan_Electricity_3 - e70203 风机电流-A */ public Double getVocFanElectricity3() { return vocFanElectricity3; } /** * 设置e70203 风机电流-A * * @param vocFanElectricity3 e70203 风机电流-A */ public void setVocFanElectricity3(Double vocFanElectricity3) { this.vocFanElectricity3 = vocFanElectricity3; } /** * 获取e70204 风机电流-A * * @return VOC_Fan_Electricity_4 - e70204 风机电流-A */ public Double getVocFanElectricity4() { return vocFanElectricity4; } /** * 设置e70204 风机电流-A * * @param vocFanElectricity4 e70204 风机电流-A */ public void setVocFanElectricity4(Double vocFanElectricity4) { this.vocFanElectricity4 = vocFanElectricity4; } /** * 获取e70205 风机电流-A * * @return VOC_Fan_Electricity_5 - e70205 风机电流-A */ public Double getVocFanElectricity5() { return vocFanElectricity5; } /** * 设置e70205 风机电流-A * * @param vocFanElectricity5 e70205 风机电流-A */ public void setVocFanElectricity5(Double vocFanElectricity5) { this.vocFanElectricity5 = vocFanElectricity5; } /** * 获取e70206 风机电流-A * * @return VOC_Fan_Electricity_6 - e70206 风机电流-A */ public Double getVocFanElectricity6() { return vocFanElectricity6; } /** * 设置e70206 风机电流-A * * @param vocFanElectricity6 e70206 风机电流-A */ public void setVocFanElectricity6(Double vocFanElectricity6) { this.vocFanElectricity6 = vocFanElectricity6; } }