定时任务异常通知

网关返回信息类型改为 BaseResultBean
添加队列监听开关
yun-zuoyi
yunhao.wang 6 years ago
parent b28cab255d
commit fef135791c

@ -83,11 +83,31 @@ public class SysTaskPlan extends BaseBean {
@ApiParam(value ="任务计划描述" , access ="任务计划描述")
private String taskPlanDescription;
// 枚举 CommonEnumUtil.TRUE_OR_FALSE
@Column(name="TASK_PLAN_STATUS")
@ApiParam(value ="任务状态1.正常2.禁用)" , example ="1")
@ApiParam(value ="任务状态" , example ="1")
private Integer taskPlanStatus;
@Column(name="LAST_RUN_DATE_TIME")
@ApiParam(value ="最后运行时间" , access ="最后运行时间")
private String lastRunDateTime;
// 枚举 CommonEnumUtil.TRUE_OR_FALSE
@Column(name = "IS_NOTICE")
@ApiParam(value = "是否通知", example = "1")
private Integer isNotice;
// 枚举 CommonEnumUtil.TRUE_OR_FALSE
@Column(name = "IS_INTERNAL_USER")
@ApiParam(value = "是否内部用户", example = "1")
private Integer isInternalUser;
// 枚举 ImppEnumUtil.MESSAGE_TYPE
@Column(name = "NOTICE_METHOD")
@ApiParam(value = "通知方式", example = "1")
private Integer noticeMethod;
@Column(name = "NOTICE_CHANNEL", columnDefinition = "TEXT")
@ApiParam(value = "通知渠道")
private String noticeChannel;
}

Loading…
Cancel
Save