新增华为 接收设备请求状态变化推送、请求设备认证接口

This commit is contained in:
Lemon
2024-01-22 16:31:37 +08:00
parent 28501ebd9b
commit 6962397a2e
4 changed files with 141 additions and 15 deletions

View File

@@ -0,0 +1,26 @@
package com.jsowell.pile.vo.huawei;
import com.alibaba.fastjson2.annotation.JSONField;
import lombok.Data;
/**
* 请求设备认证VO
*
* @author Lemon
* @Date 2024/1/22 15:53:06
*/
@Data
public class QueryEquipAuthVO {
@JSONField(name = "EquipAuthSeq")
private String equipAuthSeq;
@JSONField(name = "ConnectorID")
private String connectorID;
@JSONField(name = "SuccStat")
private Integer succStat;
@JSONField(name = "FailReason")
private Integer failReason;
}