package cn.iocoder.yudao.module.srm.controller.admin.tender.vo; import io.swagger.v3.oas.annotations.media.Schema; import jakarta.validation.constraints.NotNull; import lombok.Data; import java.math.BigDecimal; @Schema(description = "管理后台 - SRM 供应商报价创建/更新 Request VO") @Data public class SrmSupplierQuoteSaveReqVO { @Schema(description = "报价ID", example = "1") private Long id; @Schema(description = "招标项目ID", example = "1") private Long tenderProjectId; @Schema(description = "供应商ID", example = "1") private Long supplierId; @Schema(description = "投标ID", example = "1") private Long bidId; @Schema(description = "招标物料ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1") @NotNull(message = "招标物料ID不能为空") private Long tenderMaterialId; @Schema(description = "报价价格", requiredMode = Schema.RequiredMode.REQUIRED, example = "5000") @NotNull(message = "报价价格不能为空") private BigDecimal quotePrice; @Schema(description = "税率", example = "13") private BigDecimal taxRate; @Schema(description = "交货周期(天)", example = "30") private Integer deliveryCycle; @Schema(description = "付款条件", example = "货到30天付款") private String paymentTerms; @Schema(description = "质保期(月)", example = "12") private Integer warrantyPeriod; @Schema(description = "备注", example = "含运费") private String remark; }