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

com.aizuda.snailjob.server.web.model.request.JobUpdateJobStatusRequestVO Maven / Gradle / Ivy

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

import jakarta.validation.constraints.NotNull;
import lombok.Data;

/**
 * @author opensnail
 * @date 2023-10-15 16:06:20
 * @since 2.4.0
 */
@Data
public class JobUpdateJobStatusRequestVO {

    @NotNull(message = "id 不能为空")
    private Long id;

    @NotNull(message = "jobStatus 不能为空")
    private Integer jobStatus;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy