| | |
| | | package cn.iocoder.yudao.module.mes.controller.admin.pd.document.vo; |
| | | |
| | | import cn.iocoder.yudao.module.system.api.storage.dto.StorageBlobRespDTO; |
| | | import cn.iocoder.yudao.framework.excel.core.annotations.DictFormat; |
| | | import cn.iocoder.yudao.framework.excel.core.convert.DictConvert; |
| | | import cn.iocoder.yudao.module.mes.enums.DictTypeConstants; |
| | |
| | | import lombok.Data; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Schema(description = "管理后台 - MES 设计资料 Response VO") |
| | | @Data |
| | |
| | | @ExcelProperty("上传时间") |
| | | private LocalDateTime uploadTime; |
| | | |
| | | @Schema(description = "文件URL", example = "https://xxx/file.pdf") |
| | | @ExcelProperty("文件URL") |
| | | private String fileUrl; |
| | | @Schema(description = "附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "备注", example = "测试备注") |
| | | @ExcelProperty("备注") |