package com.ruoyi.fuzhou.domain.vo; import com.alibaba.fastjson2.JSONObject; import com.baomidou.mybatisplus.annotation.TableField; public class DpEquipmentVO { private Integer id; private Integer beId; private String equName; private Integer intervalTime; private Integer periodTime; private Integer equSeType; private String protocol; private Integer whId; private Double x; private Double y; private Double z; private String fieldName; private Integer equipmentTypeId; private String equtype; private String description; private String filepath; private String whName; private String beName; private String typeName; private String icon; private String equCode; private Integer status; @TableField(exist = false) private String ip; @TableField(exist = false) private Integer port; @TableField(exist = false) private Byte deviceAddress; @TableField(exist = false) private Object dataHis; public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Object getDataHis() { return dataHis; } public void setDataHis(Object dataHis) { this.dataHis = dataHis; } public String getEquCode() { return equCode; } public void setEquCode(String equCode) { this.equCode = equCode; } public String getIcon() { return icon; } public void setIcon(String icon) { this.icon = icon; } public String getTypeName() { return typeName; } public void setTypeName(String typeName) { this.typeName = typeName; } public String getWhName() { return whName; } public void setWhName(String whName) { this.whName = whName; } public String getBeName() { return beName; } public void setBeName(String beName) { this.beName = beName; } public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Integer getBeId() { return beId; } public void setBeId(Integer beId) { this.beId = beId; } public String getEquName() { return equName; } public void setEquName(String equName) { this.equName = equName; } public Integer getIntervalTime() { return intervalTime; } public void setIntervalTime(Integer intervalTime) { this.intervalTime = intervalTime; } public Integer getPeriodTime() { return periodTime; } public void setPeriodTime(Integer periodTime) { this.periodTime = periodTime; } public Integer getEquSeType() { return equSeType; } public void setEquSeType(Integer equSeType) { this.equSeType = equSeType; } public String getProtocol() { return protocol; } public void setProtocol(String protocol) { this.protocol = protocol; } public Integer getWhId() { return whId; } public void setWhId(Integer whId) { this.whId = whId; } public Double getX() { return x; } public void setX(Double x) { this.x = x; } public Double getY() { return y; } public void setY(Double y) { this.y = y; } public Double getZ() { return z; } public void setZ(Double z) { this.z = z; } public String getFieldName() { return fieldName; } public void setFieldName(String fieldName) { this.fieldName = fieldName; } public Integer getEquipmentTypeId() { return equipmentTypeId; } public void setEquipmentTypeId(Integer equipmentTypeId) { this.equipmentTypeId = equipmentTypeId; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getEqutype() { return equtype; } public void setEqutype(String equtype) { this.equtype = equtype; } public String getFilepath() { return filepath; } public void setFilepath(String filepath) { this.filepath = filepath; } public String getIp() { return ip; } public void setIp(String ip) { this.ip = ip; } public Integer getPort() { return port; } public void setPort(Integer port) { this.port = port; } public Byte getDeviceAddress() { return deviceAddress; } public void setDeviceAddress(Byte deviceAddress) { this.deviceAddress = deviceAddress; } }