yangys
2025-08-30 8a7d30b24624acb234ea3fa877134e0116a5be01
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
28
29
30
31
32
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.util.List;
 
/**
 * 分页拆线呢
 */
 
@Schema(description = "机床回传文件查询对象")
@Setter
@Getter
public class MachineBackFileQueryVO extends Query {
    @Schema(description = "关键字")
    private String keyword;
    @Schema(description = "规格")
    private String machineSpec;
    @Schema(description = "节点类型")
    private String nodeType;
    @Schema(description = "节点id")
    private Long nodeId;
    @Schema(description = "目录类型")
    private String dirType;
 
    @Schema(description = "目录类型")
    private String machineCode;
    private List<Long> deptIds;
}