| | |
| | | import lombok.Setter; |
| | | import org.springblade.core.mp.support.Query; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 分页拆线呢 |
| | | */ |
| | | |
| | | @Schema(description = "机床查询对象") |
| | | @Schema(description = "机床回传文件查询对象") |
| | | @Setter |
| | | @Getter |
| | | public class MachineBackFileQueryVO extends Query { |
| | |
| | | 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; |
| | | } |