update 预约充电

This commit is contained in:
Guoqs
2024-07-30 15:26:11 +08:00
parent 8d3fbda9a2
commit b58c272121
11 changed files with 110 additions and 32 deletions

View File

@@ -17,6 +17,14 @@ import java.math.BigDecimal;
@Data
public class GenerateOrderDTO extends BasicPileDTO{
private static final long serialVersionUID = -1374766807594759104L;
/**
* 交易流水号
* 无transactionCode, 表示由平台端启动充电, 平台自行生成交易流水号
* 有transactionCode, 表示桩端主动启动充电, 平台使用桩端生成的交易流水号
*/
private String transactionCode;
/**
* 会员id
*/

View File

@@ -5,6 +5,9 @@ import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 0x65预约充电启动结果封装对象
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
@@ -31,7 +34,7 @@ public class ReservationChargingStartupResult {
private String vinCode;
/**
* 启动结果
* 启动结果 0x00失败 0x01成功
*/
private String startupResult;