| | |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.iailab.module.model.mcs.pre.entity.*; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | |
| | | @ExcelProperty("存放表") |
| | | private String tablename; |
| | | |
| | | @Schema(description = "运行时间") |
| | | @ExcelProperty("运行时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | private Date lastTime; |
| | | |
| | | @Schema(description = "运行状态") |
| | | @ExcelProperty("运行状态") |
| | | private Integer runStatus; |
| | | |
| | | @Schema(description = "运行耗时") |
| | | @ExcelProperty("运行耗时") |
| | | private Long duration; |
| | | |
| | | private List<MmItemOutputRespVO> outPuts; |
| | | |
| | | } |
| | | |