Files
bflows-bandi-be/src/main/java/net/gepafin/tendermanagement/model/response/ApplicationResponse.java
2025-01-24 19:33:47 +05:30

55 lines
1.1 KiB
Java

package net.gepafin.tendermanagement.model.response;
import lombok.Data;
import net.gepafin.tendermanagement.enums.EvaluationVersionEnum;
import net.gepafin.tendermanagement.model.response.ApplicationFormFieldResponseBean;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.time.LocalTime;
import java.util.List;
@Data
public class ApplicationResponse{
private Long id;
private Long callId;
private String callTitle;
private LocalDateTime callEndDate;
private LocalTime callEndTime;
private LocalDateTime modifiedDate;
private Integer progress;
private LocalDateTime submissionDate;
private String status;
private String comments;
private Long companyId;
private String companyName;
private Long protocolNumber;
private Long assignedUserId;
private String assignedUserName;
private BigDecimal amountRequested;
private BigDecimal amountAccepted;
private LocalDateTime dateAccepted;
private LocalDateTime dateRejected;
private EvaluationVersionEnum evaluationVersion;
}