|
|
@ -1,8 +1,6 @@
|
|
|
|
package cn.estsh.i3plus.pojo.platform.bean;
|
|
|
|
package cn.estsh.i3plus.pojo.platform.bean;
|
|
|
|
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.CommonEnumUtil;
|
|
|
|
|
|
|
|
import cn.estsh.i3plus.pojo.base.enumutil.ImppEnumUtil;
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
@ -11,7 +9,6 @@ import lombok.Data;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
import javax.persistence.Table;
|
|
|
|
import javax.persistence.Table;
|
|
|
@ -57,6 +54,10 @@ public class SysTaskPlan extends BaseBean {
|
|
|
|
@ApiParam(value = "定时任务运行次数", example = "0")
|
|
|
|
@ApiParam(value = "定时任务运行次数", example = "0")
|
|
|
|
private Integer taskPlanExecNum;
|
|
|
|
private Integer taskPlanExecNum;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* 获取定时任务运行次数
|
|
|
|
|
|
|
|
* @return 定时任务运行次数
|
|
|
|
|
|
|
|
*/
|
|
|
|
public int getTaskPlanExecNumValue() {
|
|
|
|
public int getTaskPlanExecNumValue() {
|
|
|
|
if (taskPlanExecNum == null) {
|
|
|
|
if (taskPlanExecNum == null) {
|
|
|
|
return 0;
|
|
|
|
return 0;
|
|
|
|