org.shoulder.batch.dto.param.QueryProgressParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shoulder-batch Show documentation
Show all versions of shoulder-batch Show documentation
Shoulder 扩展-批处理模块,提供批量数据导入、导出、异步校验、导入历史记录管理等能力。
package org.shoulder.batch.dto.param;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
* @author lym
*/
@Data
@ApiModel(description = "查询批处理进度参数")
public class QueryProgressParam {
@ApiModelProperty(required = true, value = "任务标识", example = "t65b8-e2c9-4x70-8d6c-c4572d88",
position = 1)
private String taskId;
}