设备一键恢复出厂设置功能
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.njcn.access.pojo.param;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 类的介绍:
|
||||
*
|
||||
* @author xuyang
|
||||
* @version 1.0.0
|
||||
* @createTime 2023/10/31 15:00
|
||||
*/
|
||||
@Data
|
||||
public class DeviceStatusParam {
|
||||
|
||||
private String nDid;
|
||||
|
||||
/**
|
||||
* 设备接入状态(1:未注册 2:注册 3:接入)
|
||||
*/
|
||||
private Integer status;
|
||||
|
||||
/**
|
||||
* 设备运行状态(0:删除 1:离线 2:在线)
|
||||
*/
|
||||
private Integer runStatus;
|
||||
|
||||
/**
|
||||
* 设备当前流程(1:设备登记,2:功能调试,3:出厂调试 4:设备投运)
|
||||
*/
|
||||
private Integer process;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user