|
|
|
@ -57,6 +57,14 @@ public class SysTaskPlan extends BaseBean {
|
|
|
|
|
@ApiParam(value ="定时任务运行次数" , example ="0")
|
|
|
|
|
private Integer taskPlanExecNum;
|
|
|
|
|
|
|
|
|
|
public int getTaskPlanExecNumValue(){
|
|
|
|
|
if(taskPlanExecNum == null){
|
|
|
|
|
return 0;
|
|
|
|
|
}else{
|
|
|
|
|
return taskPlanExecNum.intValue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 枚举 ImppEnumUtil.TASK_METHOD_TYPE.CLASS_METHOD
|
|
|
|
|
@Column(name="TASK_METHOD_TYPE")
|
|
|
|
|
@ApiParam(value ="任务执行类型" ,example = "-1")
|
|
|
|
|