package org.springblade.mdm.gkw.task.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;
|
|
@Schema(description = "击穿回传任务查询对象")
|
@Setter
|
@Getter
|
public class MachineBackTaskQueryVO extends Query {
|
@Schema(description = "文件名称")
|
private String programName;
|
@Schema(description = "机床编码")
|
private String machineCode;
|
@Schema(description = "任务状态")
|
private Integer status;
|
@Schema(description = "创建时间开始")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private LocalDate createTimeBegin;
|
@Schema(description = "创建时间截止")
|
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
private LocalDate createTimeEnd;
|
}
|