mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-26 22:15:06 +08:00
43 lines
645 B
Java
43 lines
645 B
Java
|
|
package com.jsowell.pile.dto;
|
||
|
|
|
||
|
|
import lombok.AllArgsConstructor;
|
||
|
|
import lombok.Builder;
|
||
|
|
import lombok.Data;
|
||
|
|
import lombok.NoArgsConstructor;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
@NoArgsConstructor
|
||
|
|
@AllArgsConstructor
|
||
|
|
@Builder
|
||
|
|
public class ReservationChargingStartupResult {
|
||
|
|
/**
|
||
|
|
* 交易流水号
|
||
|
|
*/
|
||
|
|
private String transactionCode;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 桩编号
|
||
|
|
*/
|
||
|
|
private String pileSn;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 枪口号
|
||
|
|
*/
|
||
|
|
private String connectorCode;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* vin
|
||
|
|
*/
|
||
|
|
private String vinCode;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 启动结果
|
||
|
|
*/
|
||
|
|
private String startupResult;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 失败原因
|
||
|
|
*/
|
||
|
|
private String failReason;
|
||
|
|
}
|