65 lines
1.2 KiB
Java
65 lines
1.2 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.CallTypeEnum;
|
|
|
|
@Data
|
|
public class CreateCallResponseBean {
|
|
|
|
private Long id;
|
|
|
|
private String name;
|
|
|
|
private String descriptionShort;
|
|
|
|
private String descriptionLong;
|
|
|
|
private LocalDateTime startDate;
|
|
|
|
private LocalDateTime endDate;
|
|
|
|
private CallTypeEnum 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 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;
|
|
|
|
}
|
|
|
|
|
|
|