yangys
2025-09-02 2689c8fec95018952784bd8d032afb5a194a6616
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package org.springblade.mdm.basesetting.machine.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Getter;
import lombok.Setter;
import org.springblade.core.mp.support.Query;
 
/**
 * 分页拆线呢
 */
 
@Schema(description = "机床查询对象")
@Setter
@Getter
public class MachineQueryVO extends Query {
    @Schema(description = "名称或编码")
    private String keyword;
    @Schema(description = "机床组code")
    private String machineGroupCode;
    @Schema(description = "机构id")
    private Long deptId;
    @Schema(description = "机构父节点")
    private String deptAncestors;
}