From f84d9e69907cb678150eaa6393fd74cf042fcca4 Mon Sep 17 00:00:00 2001 From: zenglf <18502938215@163.com> Date: 星期四, 28 九月 2023 14:39:03 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' into develop --- lxzn-module-system/lxzn-system-biz/src/main/java/org/jeecg/modules/quartz/dto/SysQuartzLogDto.java | 37 +++++++++++++++++++++++++++++++++++++ 1 files changed, 37 insertions(+), 0 deletions(-) diff --git a/lxzn-module-system/lxzn-system-biz/src/main/java/org/jeecg/modules/quartz/dto/SysQuartzLogDto.java b/lxzn-module-system/lxzn-system-biz/src/main/java/org/jeecg/modules/quartz/dto/SysQuartzLogDto.java new file mode 100644 index 0000000..df21fa9 --- /dev/null +++ b/lxzn-module-system/lxzn-system-biz/src/main/java/org/jeecg/modules/quartz/dto/SysQuartzLogDto.java @@ -0,0 +1,37 @@ +package org.jeecg.modules.quartz.dto; + +import com.fasterxml.jackson.annotation.JsonFormat; +import lombok.Data; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.springframework.format.annotation.DateTimeFormat; + +import java.util.Date; + +/** + * @author: LiuS + * @create: 2023-08-05 14:05 + */ +@Data +public class SysQuartzLogDto { + + @Excel(name = "浠诲姟鍚嶇О", width = 40) + private String jobName; + @Excel(name = "浠诲姟绫诲悕", width = 40) + private String jobClassName; + @Excel(name = "cron琛ㄨ揪寮�", width = 30) + private String cronExpression; + @Excel(name = "鍙傛暟", width = 15) + private String parameter; + @Excel(name = "鎻忚堪", width = 40) + private String description; + @Excel(name = "鎶ラ敊淇℃伅", width = 50) + private String exceptionDetail; + @Excel(name = "鎴愬姛鏍囧織 0鎴愬姛 -1澶辫触", width = 15) + private Integer isSuccess; + @Excel(name = "鎵ц鏃堕棿", width = 15) + private Integer executionTime; + @Excel(name = "鍒涘缓鏃堕棿", width = 20, format = "yyyy-MM-dd HH:mm:ss") + @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd HH:mm:ss") + @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") + private Date createTime; +} -- Gitblit v1.9.3