huang
2025-11-18 1566e4c7604d85737ea67fe6757e71b8185fa48e
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
package com.mes.task.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 多设备任务查询条件
 */
@Data
@ApiModel(value = "MultiDeviceTaskQuery", description = "多设备任务分页查询条件")
public class MultiDeviceTaskQuery {
 
    @ApiModelProperty(value = "设备组ID", example = "1")
    private Long groupId;
 
    @ApiModelProperty(value = "任务状态(PENDING/RUNNING/COMPLETED/FAILED/CANCELLED)")
    private String status;
 
    @ApiModelProperty(value = "页码,从1开始", example = "1")
    private Integer page = 1;
 
    @ApiModelProperty(value = "每页数量", example = "10")
    private Integer size = 10;
}