| | |
| | | package com.stylefeng.guns.modular.system.model.vo; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.stylefeng.guns.core.page.PageBT; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | @ApiModelProperty("规则编号") |
| | | private String code; |
| | | @ApiModelProperty("状态(1=待执行,2=进行中,3=成功,4=失败)") |
| | | private Integer status; |
| | | private List<Integer> status; |
| | | @ApiModelProperty("任务类型(1=定时任务,2=实时任务)") |
| | | private Integer type; |
| | | @ApiModelProperty("任务名称") |
| | | private String name; |
| | | @ApiModelProperty("任务执行时间段-开始") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime startTime; |
| | | |
| | | @ApiModelProperty("任务执行时间段-结束") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private LocalDateTime endTime; |
| | | } |