parent
77bcfd65e0
commit
4d44822efa
@ -0,0 +1,28 @@
|
||||
package com.xxl.job.core.biz.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author xuxueli 2020-04-11 22:27
|
||||
*/
|
||||
public class IdleBeatParam implements Serializable {
|
||||
private static final long serialVersionUID = 42L;
|
||||
|
||||
public IdleBeatParam() {
|
||||
}
|
||||
public IdleBeatParam(int jobId) {
|
||||
this.jobId = jobId;
|
||||
}
|
||||
|
||||
private int jobId;
|
||||
|
||||
|
||||
public int getJobId() {
|
||||
return jobId;
|
||||
}
|
||||
|
||||
public void setJobId(int jobId) {
|
||||
this.jobId = jobId;
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package com.xxl.job.core.biz.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author xuxueli 2020-04-11 22:27
|
||||
*/
|
||||
public class KillParam implements Serializable {
|
||||
private static final long serialVersionUID = 42L;
|
||||
|
||||
public KillParam() {
|
||||
}
|
||||
public KillParam(int jobId) {
|
||||
this.jobId = jobId;
|
||||
}
|
||||
|
||||
private int jobId;
|
||||
|
||||
|
||||
public int getJobId() {
|
||||
return jobId;
|
||||
}
|
||||
|
||||
public void setJobId(int jobId) {
|
||||
this.jobId = jobId;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue