All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aizuda.snailjob.server.web.model.response.RetryTaskLogResponseVO Maven / Gradle / Ivy

package com.aizuda.snailjob.server.web.model.response;

import lombok.Data;

import java.time.LocalDateTime;

/**
 * @author: opensnail
 * @date : 2022-02-28 09:09
 */
@Data
public class RetryTaskLogResponseVO {

    private Long id;

    private String uniqueId;

    private String groupName;

    private String sceneName;

    private String idempotentId;

    private String bizNo;

    private String executorName;

    private String argsStr;

    private String extAttrs;

    private LocalDateTime nextTriggerAt;

    private Integer retryStatus;

    private Integer taskType;

    private LocalDateTime createDt;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy