12 小时以前 2b8f88856e90e530ddbfce88aea107a0ec894d5d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package cn.iocoder.yudao.module.srm.controller.admin.tender.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.constraints.NotNull;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - SRM 投标创建/更新 Request VO")
@Data
public class SrmTenderBidSaveReqVO {
 
    @Schema(description = "投标ID", example = "1")
    private Long id;
 
    @Schema(description = "招标项目ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    @NotNull(message = "招标项目ID不能为空")
    private Long tenderProjectId;
 
    @Schema(description = "供应商ID", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    @NotNull(message = "供应商ID不能为空")
    private Long supplierId;
 
    @Schema(description = "投标编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "BID2024010001")
    @NotEmpty(message = "投标编号不能为空")
    private String bidNo;
 
    @Schema(description = "投标状态", example = "0")
    private Integer bidStatus;
 
    @Schema(description = "投标时间")
    private LocalDateTime bidTime;
 
    @Schema(description = "投标总金额", example = "500000")
    private BigDecimal bidTotalAmount;
 
    @Schema(description = "投标文件名", example = "bid_file.pdf")
    private String bidFileName;
 
    @Schema(description = "投标文件地址", example = "https://example.com/files/xxx.pdf")
    private String bidFileUrl;
 
}