| | |
| | | package cn.iocoder.yudao.module.srm.controller.admin.tender.vo; |
| | | |
| | | import cn.iocoder.yudao.module.system.api.storage.dto.StorageBlobRespDTO; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import java.util.List; |
| | | |
| | | @Schema(description = "管理后台 - SRM 招标项目 Response VO") |
| | | @Data |
| | |
| | | @Schema(description = "资质要求", example = "需具备ISO9001认证") |
| | | private String qualificationRequirements; |
| | | |
| | | @Schema(description = "资质要求附件列表") |
| | | private List<StorageBlobRespDTO> attachmentList; |
| | | |
| | | @Schema(description = "采购申请ID", example = "1") |
| | | private Long purchaseRequestId; |
| | | |