1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.ruoyi.order.api.vo;
|
| import lombok.Data;
|
| /**
| * 远程停机命令回复
| **/
|
| @Data
| public class PlatformStopChargingReplyVO {
| private String charging_pile_code; // 桩编码
| private String charging_gun_code; // 抢号
| private Integer stop_result; // 停止结果(0:失败,1:成功)
| private Integer failure_cause; // 失败原因(0:无,1:设备编号不匹配,2:枪未处于充电状态,3:其他)
|
|
| }
|
|