package com.ruoyi.order.api.vo;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import lombok.Data;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2024/9/5 14:25
|
*/
|
@Data
|
public class GetChargingOrderByLicensePlate {
|
/**
|
* 车牌
|
*/
|
private String licensePlate;
|
/**
|
* 开始时间
|
*/
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime startTime;
|
|
}
|