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;
|
}
|