You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
824 B
35 lines
824 B
package com.mh.user.entity; |
|
|
|
import lombok.Getter; |
|
import lombok.Setter; |
|
|
|
/** |
|
* @author ljf |
|
* @title : |
|
* @description : |
|
* @updateTime 2020-07-31 |
|
* @throws : |
|
*/ |
|
@Getter |
|
@Setter |
|
public class ExceptionTableData { |
|
|
|
private int deviceId; |
|
private String deviceName; |
|
private int info; |
|
private String timeStamp; |
|
private String remark; |
|
private int process; // 0(正常),1(处理中),2(异常) |
|
|
|
@Override |
|
public String toString() { |
|
return "TableData{" + |
|
"deviceId=" + deviceId + |
|
", deviceName='" + deviceName + '\'' + |
|
", info=" + info + |
|
", timeStamp='" + timeStamp + '\'' + |
|
", remark='" + remark + '\'' + |
|
", process=" + process + |
|
'}'; |
|
} |
|
}
|
|
|