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

5 years ago
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;
}