Files
jsowell-charger-web/jsowell-thirdparty/src/main/java/com/jsowell/thirdparty/vo/QueryStopChargeVO.java
2023-04-25 14:03:09 +08:00

39 lines
688 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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;
}