puzhibing
2024-10-26 a39e138fc031862791060a7e3179e4376e0a1ae4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.chargingPile.api.vo;
 
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2024/9/5 14:16
 */
@Data
public class GetParkingRecord {
    /**
     * 车牌
     */
    private String licensePlate;
    /**
     * 状态(1=已进场,2=已出场,3=已缴费出场)
     */
    private Integer status;
}