yangys
2025-09-05 5d99227a97b7b244893b748af28e7f78238d2951
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
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 MachineFileQueryVO extends Query {
    @Schema(description = "文件名成")
    private String name;
    @Schema(description = "目录类型")
    private String dirType;
    @Schema(description = "机床编码")
    private String machineCode;
    @Schema(description = "节点类型")
    private String nodeType;
    @Schema(description = "节点id")
    private Long nodeId;
    @Schema(description = "部门id集合")
    private List<Long> deptIds;
}