package org.springblade.mdm.machinefile.vo;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Getter;
|
import lombok.Setter;
|
import org.springblade.core.mp.support.Query;
|
|
import java.time.LocalDateTime;
|
import org.springframework.format.annotation.DateTimeFormat;
|
/**
|
* 分页拆线呢
|
*/
|
|
@Schema(description = "机床回传文件处理查询对象")
|
@Setter
|
@Getter
|
public class MachineAcceptedFileHandleQueryVO extends Query {
|
@Schema(description = "文件名")
|
private String name;
|
@Schema(description = "涨停")
|
private Integer status;
|
|
@Schema(description = "确认时间-开始")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime confirmTimeBegin;
|
@Schema(description = "确认时间-截止")
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private LocalDateTime confirmTimeEnd;
|
|
|
}
|