| | |
| | | import jakarta.validation.constraints.NotBlank; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Schema(description = "管理后台 - MES 设计资料新增/修改 Request VO") |
| | | @Data |
| | |
| | | @Schema(description = "上传时间") |
| | | private LocalDateTime uploadTime; |
| | | |
| | | @Schema(description = "文件URL", example = "https://xxx/file.pdf") |
| | | private String fileUrl; |
| | | @Schema(description = "附件blobId列表", example = "[1, 2, 3]") |
| | | private List<Long> blobIds; |
| | | |
| | | @Schema(description = "备注", example = "测试备注") |
| | | private String remark; |