¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | } |