yangys
2025-09-25 31ecdb8c700529a59dd762f0c47f0ed9c66d5092
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
}