31 lines
579 B
Java
31 lines
579 B
Java
|
package com.sky.pojo.dto;
|
||
|
|
||
|
import lombok.Data;
|
||
|
import org.springframework.format.annotation.DateTimeFormat;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.time.LocalDateTime;
|
||
|
|
||
|
@Data
|
||
|
public class OrdersPageQueryDTO implements Serializable {
|
||
|
|
||
|
private int page;
|
||
|
|
||
|
private int pageSize;
|
||
|
|
||
|
private String number;
|
||
|
|
||
|
private String phone;
|
||
|
|
||
|
private Integer status;
|
||
|
|
||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||
|
private LocalDateTime beginTime;
|
||
|
|
||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||
|
private LocalDateTime endTime;
|
||
|
|
||
|
private Long userId;
|
||
|
|
||
|
}
|