hsy
2026-08-28 94f30f5a8df17d9cda2831d7f0d74260f6913aba
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
package com.ruoyi.sales.dto;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.math.BigDecimal;
import java.util.Date;
 
@Data
public class BiddingManagementDto {
    private Long id;
    
    private Long projectId;
    
    private String projectName;
    
    private String bidDocName;
    
    private String tenderUnit;
    
    private String bidUnit;
    
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date tenderDate;
    
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date bidDate;
    
    private String bidDateStart;
    
    private String bidDateEnd;
    
    private BigDecimal bidDocFee;
    
    private String bidDocFeeStatus;
    
    @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private Date bidDocFeeStatusChangeDate;
    
    private BigDecimal bidDeposit;
    
    private String bidResult;
}