mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 19:15:35 +08:00
新增华为 接收设备请求状态变化推送、请求设备认证接口
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user