11 小时以前 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package cn.iocoder.yudao.module.srm.controller.admin.tender.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.math.BigDecimal;
import java.time.LocalDateTime;
 
@Schema(description = "管理后台 - SRM 定标 Response VO")
@Data
public class SrmBidAwardRespVO {
 
    @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 = "定标编号", example = "AWARD2024010001")
    private String awardNo;
 
    @Schema(description = "定标状态", example = "0")
    private Integer awardStatus;
 
    @Schema(description = "定标金额", example = "500000")
    private BigDecimal awardAmount;
 
    @Schema(description = "定标时间")
    private LocalDateTime awardTime;
 
    @Schema(description = "通知书文件名", example = "award_notice.pdf")
    private String noticeFileName;
 
    @Schema(description = "通知书文件地址", example = "https://example.com/files/xxx.pdf")
    private String noticeFileUrl;
 
    @Schema(description = "采购订单ID", example = "1")
    private Long purchaseOrderId;
 
    @Schema(description = "采购订单编号", example = "PO2024010001")
    private String purchaseOrderNo;
 
    @Schema(description = "审批人ID", example = "1")
    private Long approverId;
 
    @Schema(description = "审批时间")
    private LocalDateTime approvalTime;
 
    @Schema(description = "备注", example = "综合评标第一名")
    private String remark;
 
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
 
}