puzhibing
2025-02-06 fd90eaebe2d70d1f7cf7ee511f084e0b97fc16a2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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", timezone = "GMT+8")
    private LocalDateTime startTime;
    
}