| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- package com.zksy.pole.domain.po;
- 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 java.io.Serializable;
- import java.util.Date;
- import lombok.Data;
- /**
- * 设备上下线报警
- * @TableName dg_equipment_alarm
- */
- @TableName(value ="dg_equipment_alarm")
- @Data
- public class DgEquipmentAlarm implements Serializable {
- /**
- * 主键
- */
- @TableId
- private String id;
- /**
- * cmd
- */
- private Long cmd;
- /**
- * 时间
- */
- private Date dateTime;
- /**
- * 网络设备为ip地址,非网络设备没有此字段
- */
- private String ip;
- /**
- * 网络设备为ip主机名称,串口设备为因子名
- */
- private String deviceName;
- /**
- * 1:摄像头 2:信息发布屏 3:网络广播 4:一键求助 5无线AP 6充电桩 7其它网络1 8其它网络2 9 串口设备
- */
- private String type;
- /**
- * 1:设备上线 0:设备离线
- */
- private String status;
- /**
- * 创建者
- */
- private String createBy;
- /**
- * 创建时间
- */
- private Date createTime;
- /**
- * 更新者
- */
- private String updateBy;
- /**
- * 更新时间
- */
- private Date updateTime;
- @TableField(exist = false)
- private static final long serialVersionUID = 1L;
- @Override
- public boolean equals(Object that) {
- if (this == that) {
- return true;
- }
- if (that == null) {
- return false;
- }
- if (getClass() != that.getClass()) {
- return false;
- }
- DgEquipmentAlarm other = (DgEquipmentAlarm) that;
- return (this.getId() == null ? other.getId() == null : this.getId().equals(other.getId()))
- && (this.getCmd() == null ? other.getCmd() == null : this.getCmd().equals(other.getCmd()))
- && (this.getDateTime() == null ? other.getDateTime() == null : this.getDateTime().equals(other.getDateTime()))
- && (this.getIp() == null ? other.getIp() == null : this.getIp().equals(other.getIp()))
- && (this.getDeviceName() == null ? other.getDeviceName() == null : this.getDeviceName().equals(other.getDeviceName()))
- && (this.getType() == null ? other.getType() == null : this.getType().equals(other.getType()))
- && (this.getStatus() == null ? other.getStatus() == null : this.getStatus().equals(other.getStatus()))
- && (this.getCreateBy() == null ? other.getCreateBy() == null : this.getCreateBy().equals(other.getCreateBy()))
- && (this.getCreateTime() == null ? other.getCreateTime() == null : this.getCreateTime().equals(other.getCreateTime()))
- && (this.getUpdateBy() == null ? other.getUpdateBy() == null : this.getUpdateBy().equals(other.getUpdateBy()))
- && (this.getUpdateTime() == null ? other.getUpdateTime() == null : this.getUpdateTime().equals(other.getUpdateTime()));
- }
- @Override
- public int hashCode() {
- final int prime = 31;
- int result = 1;
- result = prime * result + ((getId() == null) ? 0 : getId().hashCode());
- result = prime * result + ((getCmd() == null) ? 0 : getCmd().hashCode());
- result = prime * result + ((getDateTime() == null) ? 0 : getDateTime().hashCode());
- result = prime * result + ((getIp() == null) ? 0 : getIp().hashCode());
- result = prime * result + ((getDeviceName() == null) ? 0 : getDeviceName().hashCode());
- result = prime * result + ((getType() == null) ? 0 : getType().hashCode());
- result = prime * result + ((getStatus() == null) ? 0 : getStatus().hashCode());
- result = prime * result + ((getCreateBy() == null) ? 0 : getCreateBy().hashCode());
- result = prime * result + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode());
- result = prime * result + ((getUpdateBy() == null) ? 0 : getUpdateBy().hashCode());
- result = prime * result + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode());
- return result;
- }
- @Override
- public String toString() {
- StringBuilder sb = new StringBuilder();
- sb.append(getClass().getSimpleName());
- sb.append(" [");
- sb.append("Hash = ").append(hashCode());
- sb.append(", id=").append(id);
- sb.append(", cmd=").append(cmd);
- sb.append(", dateTime=").append(dateTime);
- sb.append(", ip=").append(ip);
- sb.append(", deviceName=").append(deviceName);
- sb.append(", type=").append(type);
- sb.append(", status=").append(status);
- sb.append(", createBy=").append(createBy);
- sb.append(", createTime=").append(createTime);
- sb.append(", updateBy=").append(updateBy);
- sb.append(", updateTime=").append(updateTime);
- sb.append(", serialVersionUID=").append(serialVersionUID);
- sb.append("]");
- return sb.toString();
- }
- }
|