43 lines
695 B
Java
43 lines
695 B
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDateTime;
|
|
|
|
@Data
|
|
public class CallResponseBean {
|
|
|
|
|
|
private Long id;
|
|
|
|
private String title;
|
|
|
|
private String description;
|
|
|
|
private LocalDateTime startDate;
|
|
|
|
private LocalDateTime endDate;
|
|
|
|
private String status;
|
|
|
|
private RegionResponseBean region;
|
|
|
|
private BigDecimal fundingAmount;
|
|
|
|
private String contactInfo;
|
|
|
|
private String submissionMethod;
|
|
|
|
private Integer totalScore;
|
|
|
|
private Integer minimumScore;
|
|
|
|
private String priorityArea;
|
|
|
|
private LocalDateTime createdDate;
|
|
|
|
private LocalDateTime updatedDate;
|
|
|
|
}
|