package org.springblade.mdm.statreport.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springblade.core.mp.support.Query;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDate;
|
import java.time.LocalDateTime;
|
import java.util.List;
|
|
/**
|
* 分页查询参数
|
*/
|
|
@Schema(description = "新编程序统计查询对象")
|
@Setter
|
@Getter
|
public class MachineFileExceptionQueryVO extends Query {
|
@Schema(description = "文件名称")
|
private String name;
|
|
@Schema(description = "文件创建时间开始")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime fileCreateTimeBegin;
|
@Schema(description = "文件创建时间截止")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime fileCreateTimeEnd;
|
}
|