package com.hk.NumericalCollection.entity;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
@Data
|
@TableName("device_error")
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
public class DeviceError implements Serializable {
|
|
/**
|
* 主键自增
|
*/
|
@TableId(type = IdType.AUTO)
|
private Integer id;
|
|
/**
|
* 设备id
|
*/
|
private Integer deviceId;
|
|
/**
|
* 设备名称
|
*/
|
private String deviceName;
|
|
/**
|
* 盒子编号
|
*/
|
private String deviceNo;
|
|
/**
|
* 使用人id
|
*/
|
private Integer optUserId;
|
|
/**
|
* 手动调试人id
|
*/
|
private Integer handleUserId;
|
|
/**
|
* 开始时间
|
*/
|
private String startdate;
|
|
/**
|
* 故障状态 0未修复 1已修复
|
*/
|
private Integer status;
|
|
/**
|
* 故障天数
|
*/
|
private Integer daynum;
|
|
/**
|
* 故障
|
*/
|
private String deverr;
|
|
/**
|
* 故障id
|
*/
|
private Integer deverrid;
|
|
/**
|
* 故障秒数
|
*/
|
private Integer errorSeconds;
|
|
/**
|
* 预计维修时间
|
*/
|
private Double maintainPlan;
|
|
/**
|
* 故障时长
|
*/
|
private String longtime;
|
|
/**
|
* 列表分钟显示
|
*/
|
private Integer mintime;
|
|
/**
|
* 检修表外键id
|
*/
|
private Integer errorcheckid;
|
|
/**
|
* 是否人工修改 0默认 1修改
|
*/
|
private Integer usertype;
|
|
/**
|
* 故障编号
|
*/
|
private String code;
|
|
/**
|
* 操作类别
|
*/
|
private String worktype;
|
|
/**
|
* 公司id
|
*/
|
private Integer comId;
|
|
/**
|
* 已创建机制 0=没有,1=有
|
*/
|
private Integer hasMethod;
|
|
/**
|
* 故障创建时间
|
*/
|
private String dateCreater;
|
|
/**
|
* 用户id
|
*/
|
private Integer authorId;
|
}
|