luodangjia
2024-08-31 31e408fb7efa3b8352d420d3cb4dbf4ca7f1d47a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ruoyi.chargingPile.dto;
 
import com.ruoyi.common.core.web.page.BasePage;
import lombok.Data;
 
import java.time.LocalDate;
import java.time.LocalDateTime;
 
@Data
public class ParkingRecordPageQuery extends BasePage {
    LocalDate start;
    LocalDate end;
    String licensePlate;
    Integer status;
    Integer outParkingType;
}