无关风月
2024-09-11 6efb0ab56534f7c5afe5d8d494d7b78625b7cd00
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;
}