mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2025-02-23 12:40:32 +08:00
53 lines
1.2 KiB
Java
53 lines
1.2 KiB
Java
package com.ruoyi.quartz.domain;
|
||
|
||
import java.util.Date;
|
||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||
import com.ruoyi.common.annotation.Excel;
|
||
import com.ruoyi.common.core.domain.BaseEntity;
|
||
|
||
/**
|
||
* 定时任务调度日志表 sys_job_log
|
||
*
|
||
* @author ruoyi
|
||
*/
|
||
public class SysJobLog extends BaseEntity
|
||
{
|
||
private static final long serialVersionUID = 1L;
|
||
|
||
/** ID */
|
||
@Excel(name = "日志序号")
|
||
private Long jobLogId;
|
||
|
||
/** 任务名称 */
|
||
@Excel(name = "任务名称")
|
||
private String jobName;
|
||
|
||
/** 任务组名 */
|
||
@Excel(name = "任务组名")
|
||
private String jobGroup;
|
||
|
||
/** 调用目标字符串 */
|
||
@Excel(name = "调用目标字符串")
|
||
private String invokeTarget;
|
||
|
||
/** 日志信息 */
|
||
@Excel(name = "日志信息")
|
||
private String jobMessage;
|
||
|
||
/** 执行状态(0正常 1失败) */
|
||
@Excel(name = "执行状态", readConverterExp = "0=正常,1=失败")
|
||
private String status;
|
||
|
||
/** 异常信息 */
|
||
@Excel(name = "异常信息")
|
||
private String exceptionInfo;
|
||
|
||
/** 开始时间 */
|
||
private Date startTime;
|
||
|
||
/** 停止时间 */
|
||
private Date stopTime;
|
||
|
||
}
|