You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
508 B
Java

package com.ann.demo.entity.other;
import lombok.Data;
/**
* @Author: LeiJiaXin
* @Date: 2019/7/13 16:53
*/
@Data
public class QuartzBean {
/**
* 任务id
*/
private String id;
/**
* 任务名称
*/
private String jobName;
/**
* 任务执行类
*/
private String jobClass;
/**
* 任务状态 启动还是暂停
*/
private Integer status;
/**
* 任务运行时间表达式
*/
private String cronExpression;
}