53 lines
984 B
Java
53 lines
984 B
Java
package net.gepafin.tendermanagement.model.request;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDateTime;
|
|
import java.util.List;
|
|
|
|
import lombok.Data;
|
|
import net.gepafin.tendermanagement.enums.EvaluationVersionEnum;
|
|
|
|
@Data
|
|
public class CreateCallRequestStep1 {
|
|
|
|
private String name;
|
|
|
|
private String descriptionShort;
|
|
|
|
private String descriptionLong;
|
|
|
|
private List<LocalDateTime> dates;
|
|
|
|
private Long regionId;
|
|
|
|
private BigDecimal amount;
|
|
|
|
private BigDecimal amountMax;
|
|
|
|
private Long numberOfCheck;
|
|
|
|
private Long appointmentTemplateId;
|
|
|
|
private List<LookUpDataReq> aimedTo;
|
|
|
|
private String documentationRequested;
|
|
|
|
private BigDecimal amountMin;
|
|
|
|
private String email;
|
|
|
|
private String phoneNumber;
|
|
|
|
private String startTime;
|
|
|
|
private String endTime;
|
|
|
|
private Boolean confidi;
|
|
|
|
private Boolean allowMultipleApplications;
|
|
|
|
private List<FaqReq> faq;
|
|
|
|
private EvaluationVersionEnum evaluationVersion;
|
|
}
|