add 联联平台请求停止充电接口

This commit is contained in:
Lemon
2023-04-25 14:03:09 +08:00
parent c584ff91f4
commit ea34f51849
6 changed files with 130 additions and 2 deletions

View File

@@ -0,0 +1,38 @@
package com.jsowell.thirdparty.vo;
import lombok.Data;
/**
* 请求停止充电
*
* @author JS-ZZA
* @date 2023/4/25 11:21
*/
@Data
public class QueryStopChargeVO {
/**
* 充电订单号
*/
private String StartChargeSeq;
/**
* 充电订单状态 1、启动中 2、充电中3、停止中4、已结束5、未知
*/
private int StartChargeSeqStat;
/**
* 成功状态 0:成功; 1:失败
*/
private int SuccStat;
/**
* 失败原因
* 0:无;
* 1:此设备不存在;
* 2:此设备离线:
* 3:设备已停止充电;
* 499:自定义
*/
private int FailReason;
}