This commit is contained in:
2023-10-12 09:46:38 +08:00
parent 60dcf51013
commit 34f748374d
2 changed files with 9 additions and 4 deletions

View File

@@ -97,10 +97,16 @@ public class CsEventPO extends BaseEntity {
*/
@TableField(value = "location")
private String location;
/**
* 用于数据控制 1:设备登记2功能调试3出厂调试 4设备投运)
* 流程信息(用于数据控制 1:设备登记2功能调试3出厂调试 4设备投运)
*/
@TableField(value = "process")
private String process;
private Integer process;
/**
* 告警故障编码一般显示为Hex
*/
@TableField(value = "code")
private String code;
}