66 lines
1.2 KiB
Java
66 lines
1.2 KiB
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import lombok.Data;
|
|
import net.gepafin.tendermanagement.enums.CallStatusEnum;
|
|
import net.gepafin.tendermanagement.enums.EvaluationVersionEnum;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDateTime;
|
|
import java.time.LocalTime;
|
|
import java.util.List;
|
|
@Data
|
|
public class CallDetailsResponseBean {
|
|
|
|
private Long id;
|
|
|
|
private String name;
|
|
|
|
private String descriptionShort;
|
|
|
|
private String descriptionLong;
|
|
|
|
private List<LocalDateTime> dates;
|
|
|
|
private Boolean confidi;
|
|
|
|
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 documentationRequested;
|
|
|
|
private BigDecimal amountMin;
|
|
|
|
private String email;
|
|
|
|
private String phoneNumber;
|
|
|
|
private LocalTime startTime;
|
|
|
|
private LocalTime endTime;
|
|
|
|
private LocalDateTime createdDate;
|
|
|
|
private LocalDateTime updatedDate;
|
|
|
|
private Long preferredCallId;
|
|
|
|
private Long numberOfCheck;
|
|
|
|
private Long appointmentTemplateId;
|
|
|
|
private EvaluationVersionEnum evaluationVersion;
|
|
}
|