package com.ruoyi.integration.iotda.model; import lombok.Data; /** * 远程停机命令回复 **/ @Data public class PlatformStopChargingReplyMessage extends BaseMessage { private String charging_pile_code; // 桩编码 private String charging_gun_code; // 抢号 private Integer stop_result; // 停止结果(0:失败,1:成功) private Integer failure_cause; // 失败原因(0:无,1:设备编号不匹配,2:枪未处于充电状态,3:其他) }