设备一键恢复出厂设置功能

This commit is contained in:
2023-10-31 15:22:08 +08:00
parent 4e21813edf
commit 18186ae390
14 changed files with 290 additions and 62 deletions

View File

@@ -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;
}