| | |
| | | import com.ruoyi.sales.pojo.CommonFile; |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Data |
| | |
| | | // private List<StorageAttachment> attachments; |
| | | |
| | | private List<String> tempFileIds; |
| | | private List<CommonFile> commonFileList; //生产中 |
| | | private List<CommonFile> commonFileListAfter; //生产后 |
| | | private List<CommonFile> commonFileListBefore; //生产前 |
| | | private List<CommonFile> commonFileList; |
| | | |
| | | /** |
| | | * 要求的执行时间(来自定时任务的nextExecutionTime) |
| | | */ |
| | | private LocalDateTime nextExecutionTime; |
| | | |
| | | /** |
| | | * 状态:EXPIRED-已过期,IN_PROGRESS-巡检中,PENDING-待巡检 |
| | | */ |
| | | private String status; |
| | | |
| | | } |