65 lines
1.1 KiB
Java
65 lines
1.1 KiB
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
import lombok.Data;
|
|
import net.gepafin.tendermanagement.enums.CallStatusEnum;
|
|
|
|
@Data
|
|
public class CallResponse {
|
|
|
|
private Long id;
|
|
|
|
private String name;
|
|
|
|
private String descriptionShort;
|
|
|
|
private String descriptionLong;
|
|
|
|
private List<LocalDateTime> dates;
|
|
|
|
private CallStatusEnum status;
|
|
|
|
private Long regionId;
|
|
|
|
private BigDecimal amount;
|
|
|
|
private BigDecimal amountMax;
|
|
|
|
private String contactInfo;
|
|
|
|
private String submissionMethod;
|
|
|
|
private Long threshold;
|
|
|
|
private String priorityArea;
|
|
|
|
private String documentationReqested;
|
|
|
|
private Boolean confidi;
|
|
|
|
private LocalDateTime createdDate;
|
|
|
|
private LocalDateTime updatedDate;
|
|
|
|
private List<LookUpDataResponse> aimedTo;
|
|
|
|
private List<EvaluationCriteriaResponseBean> criteria;
|
|
|
|
private List<DocumentResponseBean> docs;
|
|
|
|
private List<FaqResponseBean> faq;
|
|
|
|
private List<DocumentResponseBean> images;
|
|
|
|
private List<LookUpDataResponse> checkList;
|
|
|
|
private String currentStep;
|
|
|
|
}
|
|
|
|
|
|
|