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;
| }
|
|