yangys
2025-08-13 c6b49750da5d19383e74e644f4fa1734138aff89
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.program.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import org.springblade.core.mp.support.Query;
 
import java.util.Date;
 
/**
 * 分页拆线呢
 */
 
@Schema(description = "机床回传文件查询对象")
@Setter
@Getter
public class NcProgramExportDncQueryVO extends Query {
    @Schema(description = "程序名称")
    private String name;
    @Schema(description = "通过时间开始")
    private Date createTimeBegin;
    @Schema(description = "通过时间截止")
    private Date createTimeEnd;
 
    @Schema(description = "状态:2是已导出(已办)")
    private int status;
}