package com.ruoyi.jianguan.model;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
|
import javax.validation.constraints.NotNull;
|
import javax.validation.constraints.Null;
|
|
/**
|
* 查询充电状态
|
* @author zhibing.pu
|
* @Date 2025/1/21 16:17
|
*/
|
@Data
|
public class QueryEquipChargeStatus {
|
/**
|
* 充电订单号
|
*/
|
@NotNull
|
@JsonProperty("StartChargeSeq")
|
private String startChargeSeq;
|
/**
|
* 抢号
|
*/
|
@NotNull
|
@JsonProperty("ConnectorID")
|
private String connectorID;
|
/**
|
* 车辆识别码
|
*/
|
@Null
|
@JsonProperty("VIN")
|
private String VIN;
|
}
|