补充提交,增加type属性
This commit is contained in:
@@ -14,6 +14,7 @@ public class ScheduleCfg extends BaseCfg<ScheduleCfg>{
|
|||||||
private String cronValid;//生效cron表达式
|
private String cronValid;//生效cron表达式
|
||||||
private String cronInvalid;//失效cron表达式
|
private String cronInvalid;//失效cron表达式
|
||||||
private String whereStr;//动态where 条件
|
private String whereStr;//动态where 条件
|
||||||
|
private int type;
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
@@ -38,6 +39,11 @@ public class ScheduleCfg extends BaseCfg<ScheduleCfg>{
|
|||||||
public void setWhereStr(String whereStr) {
|
public void setWhereStr(String whereStr) {
|
||||||
this.whereStr = whereStr;
|
this.whereStr = whereStr;
|
||||||
}
|
}
|
||||||
|
public int getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
public void setType(int type) {
|
||||||
|
this.type = type;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user