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;
|
}
|